From 2ec4019ea2636b507c1dffe90883be0f4977bbe9 Mon Sep 17 00:00:00 2001 From: Max Leiter Date: Mon, 21 Mar 2022 14:56:45 -0700 Subject: [PATCH] client: fix submitting status on new post --- client/components/new-post/index.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/client/components/new-post/index.tsx b/client/components/new-post/index.tsx index a12cc8fc..64d45cd0 100644 --- a/client/components/new-post/index.tsx +++ b/client/components/new-post/index.tsx @@ -73,15 +73,10 @@ const Post = () => { password, userId: Cookies.get('drift-userid') || '' }) - - - - setSubmitting(false) } const onClosePasswordModal = () => { setPasswordModalVisible(false) - setSubmitting(false) } const updateTitle = useCallback((title: string, id: string) => {