Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/components/ticket-chat/ticket-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ export function TicketChat(props: TicketChatProps) {
{/* Chat Messages Container */}
<div className="bg-white rounded-t-[10px] shadow-[0px_4px_15px_0px_rgba(134,140,152,0.2)] flex-1 overflow-auto">
<div className="p-4">
<div className="max-w-4xl space-y-6">
<div className="max-w-4xl space-y-8">
{intro}

{/* Chat Messages */}
<div className="space-y-4">
<div className="space-y-6">
{thread.map((msg) => (
<div key={msg.id} className="flex gap-3">
{msg.senderType === "system" && (msg.kind === "claimed" || msg.kind === "ended") ? (
Expand Down