From 0bd240939a28a192707047338af83ee629088f1e Mon Sep 17 00:00:00 2001 From: Daniel Avila Date: Mon, 10 Apr 2023 17:15:28 -0400 Subject: [PATCH] refactor(Message.jsx): remove cancelled message bubble and improve wording of unfinished message --- client/src/components/Messages/Message.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/Messages/Message.jsx b/client/src/components/Messages/Message.jsx index ab605a8681..a858f2aac9 100644 --- a/client/src/components/Messages/Message.jsx +++ b/client/src/components/Messages/Message.jsx @@ -188,17 +188,17 @@ export default function Message({ )} - {!isSubmitting && cancelled ? ( + {/* {!isSubmitting && cancelled ? (
{`This is a cancelled message.`}
- ) : null} + ) : null} */} {!isSubmitting && unfinished ? (
- {`This is an unfinished message. It might because the AI is still generating or it has been aborted. Refresh later to see more updates.`} + {`This is an unfinished message. The AI may still be generating a response or it was aborted. Refresh or visit later to see more updates.`}
) : null}