From f3630dd868e70c99703ae765d0f378cb20675e0e Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 25 Oct 2025 22:30:08 +0200 Subject: [PATCH] Send generic error message instead of error log --- web/pages/messages/[channelId].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/messages/[channelId].tsx b/web/pages/messages/[channelId].tsx index ae87e074..fad3f1a8 100644 --- a/web/pages/messages/[channelId].tsx +++ b/web/pages/messages/[channelId].tsx @@ -176,7 +176,7 @@ export const PrivateChat = (props: { editor.commands.focus() }) .catch((e) => { - toast.error(e.message) + toast.error("Couldn't send message. Please try again later or contact support if the problem persists.") console.error(e) }) setIsSubmitting(false)