From 2fdc4376bfbb43bfd99efb216849b1bcfb47061c Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 15 Jul 2020 12:33:20 -0400 Subject: [PATCH] fix import statement --- ui/component/commentCreate/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/component/commentCreate/index.js b/ui/component/commentCreate/index.js index 4d5f9085b..a6a688c06 100644 --- a/ui/component/commentCreate/index.js +++ b/ui/component/commentCreate/index.js @@ -1,6 +1,7 @@ import { connect } from 'react-redux'; -import { doCommentCreate, makeSelectClaimForUri, selectMyChannelClaims } from 'lbry-redux'; +import { makeSelectClaimForUri, selectMyChannelClaims } from 'lbry-redux'; import { doOpenModal } from 'redux/actions/app'; +import { doCommentCreate } from 'redux/actions/comments'; import { CommentCreate } from './view'; import { selectUserVerifiedEmail } from 'redux/selectors/user';