From 3d7470b01d253f24720feada082cd6425413f9dc Mon Sep 17 00:00:00 2001 From: Bradley Ray Date: Mon, 11 Oct 2021 19:04:58 -0500 Subject: [PATCH] change to import instead of redefining const --- ui/component/commentCreate/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/commentCreate/index.js b/ui/component/commentCreate/index.js index 7f9c990be..80653e42f 100644 --- a/ui/component/commentCreate/index.js +++ b/ui/component/commentCreate/index.js @@ -12,8 +12,8 @@ import { selectActiveChannelClaim } from 'redux/selectors/app'; import { selectSettingsByChannelId } from 'redux/selectors/comments'; import { CommentCreate } from './view'; import { doToast } from 'redux/actions/notifications'; +import { DISABLE_SUPPORT_TAG } from 'constants/tags' -const DISABLE_SUPPORT_TAG = 'disable-support'; const select = (state, props) => ({ claim: makeSelectClaimForUri(props.uri)(state), channels: selectMyChannelClaims(state),