From 02935d7a0f12487d31d449c78298ca3ff26e477d Mon Sep 17 00:00:00 2001 From: ecwu Date: Mon, 20 Jan 2025 14:54:08 +0000 Subject: [PATCH] fix: update toast messages for clarity in chat session notifications --- src/pages/App.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/App.tsx b/src/pages/App.tsx index 8a205a9..2b9c939 100644 --- a/src/pages/App.tsx +++ b/src/pages/App.tsx @@ -135,12 +135,12 @@ export function App() { // if the chatStore is not found, we need to override the endpoint // with the default one toast({ - title: "New chat session created", + title: "New chat created", description: `API Endpoint: ${ret.apiEndpoint}`, }); } else { toast({ - title: "Chat history loaded", + title: "Chat ready", description: `Current API Endpoint: ${ret.apiEndpoint}`, }); } @@ -157,7 +157,7 @@ export function App() { setSelectedChatIndex(newKey as number); setAllChatStoreIndexes(await (await db).getAllKeys(STORAGE_NAME)); toast({ - title: "New chat session created", + title: "New chat created", description: `Current API Endpoint: ${chatStore.apiEndpoint}`, }); };