diff --git a/ui/component/commentCreate/view.jsx b/ui/component/commentCreate/view.jsx
index c437ec982..32294f60c 100644
--- a/ui/component/commentCreate/view.jsx
+++ b/ui/component/commentCreate/view.jsx
@@ -9,12 +9,10 @@ import { FormField, Form } from 'component/common/form';
import Button from 'component/button';
import ChannelSelection from 'component/selectChannel';
import usePersistedState from 'effects/use-persisted-state';
-import I18nMessage from 'component/i18nMessage';
import { FF_MAX_CHARS_IN_COMMENT } from 'constants/form-field';
import { useHistory } from 'react-router';
type Props = {
- commentingEnabled: boolean,
uri: string,
claim: StreamClaim,
openModal: (id: string, { onCommentAcknowledge: () => void }) => void,
@@ -27,17 +25,7 @@ type Props = {
};
export function CommentCreate(props: Props) {
- const {
- commentingEnabled,
- createComment,
- claim,
- openModal,
- channels,
- parentId,
- onDoneReplying,
- onCancelReplying,
- isNested,
- } = props;
+ const { createComment, claim, openModal, channels, parentId, onDoneReplying, onCancelReplying, isNested } = props;
const { push } = useHistory();
const { claim_id: claimId } = claim;
const isReply = !!parentId;
@@ -100,14 +88,6 @@ export function CommentCreate(props: Props) {
useEffect(() => setCharCount(commentValue.length), [commentValue]);
- if (!commentingEnabled) {
- return (
-