From 7557445a3ee90146d7929ed918b448305eef1359 Mon Sep 17 00:00:00 2001 From: Justin Date: Fri, 12 Aug 2022 11:49:09 -0400 Subject: [PATCH] Disable submit button --- .../features/chats/components/chat-box.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/soapbox/features/chats/components/chat-box.tsx b/app/soapbox/features/chats/components/chat-box.tsx index d10a224e4..836f2169e 100644 --- a/app/soapbox/features/chats/components/chat-box.tsx +++ b/app/soapbox/features/chats/components/chat-box.tsx @@ -201,15 +201,15 @@ const ChatBox: React.FC = ({ chat, onSetInputRef, autosize }) => { }; const renderActionButton = () => { - return canSubmit() ? ( - - ) : ( - - ); + // return canSubmit() ? ( + // + // ) : ( + // + // ); }; if (!chatMessageIds) return null;