From 3953b101a9638bbd7f291c2f74d9332e13a22cc3 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 26 Sep 2019 15:31:27 -0400 Subject: [PATCH] fix typo --- src/ui/redux/actions/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/redux/actions/app.js b/src/ui/redux/actions/app.js index 709c9f31b..014d7801e 100644 --- a/src/ui/redux/actions/app.js +++ b/src/ui/redux/actions/app.js @@ -14,7 +14,7 @@ import { doError, makeSelectClaimForUri, makeSelectClaimIsMine, - doPopulateUserSettings, + doPopulateSharedUserState, doFetchChannelListMine, } from 'lbry-redux'; import Native from 'native'; @@ -457,7 +457,7 @@ export function doSignIn() { // @endif Lbryio.call('user_settings', 'get').then(settings => { - dispatch(doPopulateUserSettings(settings)); + dispatch(doPopulateSharedUserState(settings)); }); }; }