diff --git a/web/redux/action-types.js b/web/redux/action-types.js --- a/web/redux/action-types.js +++ b/web/redux/action-types.js @@ -83,13 +83,8 @@ getInitialReduxStateCallSingleKeyserverEndpointOptions, ); - const { - currentUserInfo, - userInfos, - pushApiPublicKey, - commServicesAccessToken, - navInfo, - } = responses[authoritativeKeyserverID]; + const { currentUserInfo, userInfos, pushApiPublicKey, navInfo } = + responses[authoritativeKeyserverID]; const dataLoaded = currentUserInfo && !currentUserInfo.anonymous; const actualizedCalendarQuery = { @@ -173,7 +168,6 @@ messageStore, dataLoaded, pushApiPublicKey, - commServicesAccessToken, inviteLinksStore, keyserverInfos, }; diff --git a/web/types/redux-types.js b/web/types/redux-types.js --- a/web/types/redux-types.js +++ b/web/types/redux-types.js @@ -17,7 +17,6 @@ +userInfos: UserInfos, +messageStore: MessageStore, +pushApiPublicKey: ?string, - +commServicesAccessToken: null, +inviteLinksStore: InviteLinksStore, +dataLoaded: boolean, +actualizedCalendarQuery: CalendarQuery,