From 5aad32804000985a3a63b701d951bb25c001099b Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 2 Apr 2024 08:01:45 -0700 Subject: [PATCH] refac: toast message wording --- src/lib/components/chat/ShareChatModal.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/ShareChatModal.svelte b/src/lib/components/chat/ShareChatModal.svelte index ba53d8b8a..658ee3b12 100644 --- a/src/lib/components/chat/ShareChatModal.svelte +++ b/src/lib/components/chat/ShareChatModal.svelte @@ -21,7 +21,7 @@ const sharedChat = await shareChatById(localStorage.token, $chatId); const chatShareUrl = `${window.location.origin}/s/${sharedChat.id}`; - toast.success($i18n.t('Copied shared conversation URL to clipboard!')); + toast.success($i18n.t('Copied shared chat URL to clipboard!')); copyToClipboard(chatShareUrl); chat = await getChatById(localStorage.token, $chatId); };