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 @@ -31,7 +31,7 @@ 'danger-zone', ]); -export type NavigationChatMode = 'view' | 'create'; +export type WebNavigationChatMode = 'view' | 'create'; const navigationChatModeValidator = t.enums.of(['view', 'create']); export type NavInfo = { @@ -41,7 +41,7 @@ +pendingThread?: ThreadInfo, +settingsSection?: WebNavigationSettingsSection, +selectedUserList?: $ReadOnlyArray, - +chatMode?: NavigationChatMode, + +chatMode?: WebNavigationChatMode, +inviteSecret?: ?string, +loginMethod?: WebLoginMethod, };