From 8898ea39eac9ed527deefb234a62a237d0f46620 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Fri, 28 Jun 2019 03:52:28 -0400 Subject: [PATCH] fix rebase --- .../page/following/{index.js~HEAD => index.js} | 0 ...index.js~cleanup and add tags to publish page | 16 ---------------- 2 files changed, 16 deletions(-) rename src/ui/page/following/{index.js~HEAD => index.js} (100%) delete mode 100644 src/ui/page/following/index.js~cleanup and add tags to publish page diff --git a/src/ui/page/following/index.js~HEAD b/src/ui/page/following/index.js similarity index 100% rename from src/ui/page/following/index.js~HEAD rename to src/ui/page/following/index.js diff --git a/src/ui/page/following/index.js~cleanup and add tags to publish page b/src/ui/page/following/index.js~cleanup and add tags to publish page deleted file mode 100644 index 97edfb98c..000000000 --- a/src/ui/page/following/index.js~cleanup and add tags to publish page +++ /dev/null @@ -1,16 +0,0 @@ -import { connect } from 'react-redux'; -import { selectFollowedTags } from 'lbry-redux'; -import { selectSubscriptions } from 'redux/selectors/subscriptions'; -import TagsEdit from './view'; - -const select = state => ({ - followedTags: selectFollowedTags(state), - subscribedChannels: selectSubscriptions(state), -}); - -const perform = {}; - -export default connect( - select, - perform -)(TagsEdit);