From 49c518082023f43b1a768a17a8d2cfd356c1bff5 Mon Sep 17 00:00:00 2001 From: zeppi Date: Tue, 15 Feb 2022 20:57:20 -0500 Subject: [PATCH] fix active channel for commenting etc --- ui/component/app/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/component/app/index.js b/ui/component/app/index.js index 882bc9fec..114acd188 100644 --- a/ui/component/app/index.js +++ b/ui/component/app/index.js @@ -5,7 +5,7 @@ import { doFetchAccessToken, doUserSetReferrer } from 'redux/actions/user'; import { selectUser, selectAccessToken, selectUserVerifiedEmail } from 'redux/selectors/user'; import { selectUnclaimedRewards } from 'redux/selectors/rewards'; import { doFetchChannelListMine, doFetchCollectionListMine, doResolveUris } from 'redux/actions/claims'; -import { selectMyChannelUrls } from 'redux/selectors/claims'; +import { selectMyChannelUrls, selectMyChannelClaimIds } from 'redux/selectors/claims'; import * as SETTINGS from 'constants/settings'; import { selectSubscriptions } from 'redux/selectors/subscriptions'; import { @@ -48,6 +48,7 @@ const select = (state) => ({ syncFatalError: selectSyncFatalError(state), activeChannelClaim: selectActiveChannelClaim(state), myChannelUrls: selectMyChannelUrls(state), + myChannelClaimIds: selectMyChannelClaimIds(state), subscriptions: selectSubscriptions(state), });