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);