diff --git a/web/types/nav-types.js b/web/types/nav-types.js --- a/web/types/nav-types.js +++ b/web/types/nav-types.js @@ -14,7 +14,7 @@ export type WebNavigationTab = 'calendar' | 'chat' | 'settings'; const navigationTabValidator = t.enums.of(['calendar', 'chat', 'settings']); -export type LoginMethod = 'form' | 'qr-code'; +export type WebLoginMethod = 'form' | 'qr-code'; const loginMethodValidator = t.enums.of(['form', 'qr-code']); export type NavigationSettingsSection = @@ -43,7 +43,7 @@ +selectedUserList?: $ReadOnlyArray, +chatMode?: NavigationChatMode, +inviteSecret?: ?string, - +loginMethod?: LoginMethod, + +loginMethod?: WebLoginMethod, }; export const navInfoValidator: TInterface = tShape<$Exact>({