From 6fa4e17a58818ebcb9279d277336a8b5739e2fe3 Mon Sep 17 00:00:00 2001
From: Austin Chen <akrolsmir@gmail.com>
Date: Wed, 5 Oct 2022 09:35:21 -0400
Subject: [PATCH] Remove "Add my comment" button for signed out users

---
 web/components/comment-input.tsx | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/web/components/comment-input.tsx b/web/components/comment-input.tsx
index 6304b58d..65a697fe 100644
--- a/web/components/comment-input.tsx
+++ b/web/components/comment-input.tsx
@@ -138,16 +138,6 @@ export function CommentInputTextArea(props: {
           <LoadingIndicator spinnerClassName="border-gray-500" />
         )}
       </TextEditor>
-      <Row>
-        {!user && (
-          <button
-            className="btn btn-outline btn-sm mt-2 normal-case"
-            onClick={submitComment}
-          >
-            Add my comment
-          </button>
-        )}
-      </Row>
     </>
   )
 }