소스 검색

refac: toast message wording

Timothy J. Baek 1 년 전
부모
커밋
456a78ada9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 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);
 	};