Browse Source

refac: toast message wording

Timothy J. Baek 1 year ago
parent
commit
5aad328040
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/components/chat/ShareChatModal.svelte

+ 1 - 1
src/lib/components/chat/ShareChatModal.svelte

@@ -21,7 +21,7 @@
 		const sharedChat = await shareChatById(localStorage.token, $chatId);
 		const sharedChat = await shareChatById(localStorage.token, $chatId);
 		const chatShareUrl = `${window.location.origin}/s/${sharedChat.id}`;
 		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);
 		copyToClipboard(chatShareUrl);
 		chat = await getChatById(localStorage.token, $chatId);
 		chat = await getChatById(localStorage.token, $chatId);
 	};
 	};