From 72d2788f8c76420d17ac463cf9b746ef5b35b914 Mon Sep 17 00:00:00 2001 From: Marcus Pasell <3690498+rickyrombo@users.noreply.github.com> Date: Wed, 31 May 2023 12:42:30 -0500 Subject: [PATCH] DMs: Rename "Thread" to "Conversation" (#3474) --- .../chat-page/components/DeleteChatConfirmationModal.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/web/src/pages/chat-page/components/DeleteChatConfirmationModal.tsx b/packages/web/src/pages/chat-page/components/DeleteChatConfirmationModal.tsx index 3adf7c0a939..7a1c1b3939d 100644 --- a/packages/web/src/pages/chat-page/components/DeleteChatConfirmationModal.tsx +++ b/packages/web/src/pages/chat-page/components/DeleteChatConfirmationModal.tsx @@ -18,11 +18,11 @@ import styles from './DeleteChatConfirmationModal.module.css' const { deleteChat } = chatActions const messages = { - title: 'Delete Thread', - content: `Are you sure you want to delete this thread? + title: 'Delete Conversation', + content: `Are you sure you want to delete this conversation? - Other people in the conversation will still be able to see it. This can’t be undone.`, - confirm: 'Delete Thread', + Other people in the conversation will still be able to see it. This can’t be undone.`, + confirm: 'Delete Conversation', cancel: 'Cancel' }