From a0320f8cef39e9b81242aa32b729f11dbaf4e47f Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 19 Oct 2020 23:28:40 -0400 Subject: [PATCH] remove comment --- ui/component/commentCreate/view.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/component/commentCreate/view.jsx b/ui/component/commentCreate/view.jsx index 3ace15b47..b0cf86f7c 100644 --- a/ui/component/commentCreate/view.jsx +++ b/ui/component/commentCreate/view.jsx @@ -47,7 +47,6 @@ export function CommentCreate(props: Props) { const { push } = useHistory(); const { claim_id: claimId } = claim; const [commentValue, setCommentValue] = React.useState(''); - // const [activeChannel, setCommentChannel] = usePersistedState('comment-channel', ''); const [charCount, setCharCount] = useState(commentValue.length); const [advancedEditor, setAdvancedEditor] = usePersistedState('comment-editor-mode', false); const hasChannels = channels && channels.length;