diff --git a/app/components/post_draft/send_handler/send_handler.tsx b/app/components/post_draft/send_handler/send_handler.tsx index d8d84ace4..e2a318ddd 100644 --- a/app/components/post_draft/send_handler/send_handler.tsx +++ b/app/components/post_draft/send_handler/send_handler.tsx @@ -175,8 +175,9 @@ export default function SendHandler({ const sendCommand = useCallback(async () => { if (value.trim() === '/call end') { await handleEndCall(); - - // NOTE: fallthrough because the server may want to handle the command as well + setSendingMessage(false); + clearDraft(); + return; } const status = DraftUtils.getStatusFromSlashCommand(value);