diff --git a/web-app/src/containers/LeftPanel.tsx b/web-app/src/containers/LeftPanel.tsx index 1025bcdb7..cd6df02d7 100644 --- a/web-app/src/containers/LeftPanel.tsx +++ b/web-app/src/containers/LeftPanel.tsx @@ -221,9 +221,9 @@ const LeftPanel = () => { - Delete Thread + Delete All Threads - Are you sure you want to delete this thread? + All threads will be deleted. This action cannot be undone. @@ -241,10 +241,10 @@ const LeftPanel = () => { size="sm" onClick={() => { deleteAllThreads() - toast.success('Delete All Thread', { - id: 'delete-thread', + toast.success('Delete All Threads', { + id: 'delete-all-thread', description: - 'All thread has been permanently deleted.', + 'All threads have been permanently deleted.', }) setTimeout(() => { navigate({ to: route.home }) diff --git a/web-app/src/containers/ThreadList.tsx b/web-app/src/containers/ThreadList.tsx index 4bd2a6ca4..4a4492ff2 100644 --- a/web-app/src/containers/ThreadList.tsx +++ b/web-app/src/containers/ThreadList.tsx @@ -153,7 +153,7 @@ const SortableItem = memo(({ thread }: { thread: Thread }) => { - Rename Title + Thread Title { @@ -180,7 +180,7 @@ const SortableItem = memo(({ thread }: { thread: Thread }) => { onClick={() => { renameThread(thread.id, title) setOpenDropdown(false) - toast.success('Renema Title', { + toast.success('Rename Thread', { id: 'rename-thread', description: "Thread title has been renamed to '" + title + "'",