diff --git a/keyserver/src/responders/redux-state-responders.js b/keyserver/src/responders/redux-state-responders.js --- a/keyserver/src/responders/redux-state-responders.js +++ b/keyserver/src/responders/redux-state-responders.js @@ -97,7 +97,6 @@ userInfos: userInfosValidator, messageStore: messageStoreValidator, pushApiPublicKey: t.maybe(t.String), - commServicesAccessToken: t.Nil, inviteLinksStore: inviteLinksStoreValidator, keyserverInfo: initialKeyserverInfoValidator, }); @@ -372,7 +371,6 @@ userInfos: userInfosPromise, messageStore: messageStorePromise, pushApiPublicKey: pushApiPublicKeyPromise, - commServicesAccessToken: null, inviteLinksStore: inviteLinksStorePromise, keyserverInfo: keyserverInfoPromise, }); diff --git a/lib/types/redux-types.js b/lib/types/redux-types.js --- a/lib/types/redux-types.js +++ b/lib/types/redux-types.js @@ -176,7 +176,6 @@ +userInfos: UserInfos, +messageStore: MessageStore, +pushApiPublicKey: ?string, - +commServicesAccessToken: null, +inviteLinksStore: InviteLinksStore, +keyserverInfo: WebInitialKeyserverInfo, }; @@ -188,7 +187,6 @@ +userInfos: UserInfos, +messageStore: MessageStore, +pushApiPublicKey: ?string, - +commServicesAccessToken: null, +inviteLinksStore: InviteLinksStore, +keyserverInfo: WebInitialKeyserverInfo, }; 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,