From e0752fd7bb5ad22ffcc935f63a1c4889afa9669d Mon Sep 17 00:00:00 2001 From: NotII <46204250+NotII@users.noreply.github.com> Date: Tue, 18 Mar 2025 04:03:48 +0100 Subject: [PATCH] Updates --- components/dashboard/ChatDetail.tsx | 12 +- components/dashboard/ChatTable.tsx | 8 +- components/dashboard/NewChatForm.tsx | 211 +++++++++++++++++++++------ package-lock.json | 118 ++++++++++++++- package.json | 1 + 5 files changed, 303 insertions(+), 47 deletions(-) diff --git a/components/dashboard/ChatDetail.tsx b/components/dashboard/ChatDetail.tsx index 3d533c5..c9b1a79 100644 --- a/components/dashboard/ChatDetail.tsx +++ b/components/dashboard/ChatDetail.tsx @@ -33,6 +33,7 @@ interface Chat { messages: Message[]; lastUpdated: string; orderId?: string; + telegramUsername?: string | null; } // Helper function to extract filename from URL @@ -384,7 +385,16 @@ export default function ChatDetail({ chatId }: { chatId: string }) { -