Skip to content

Commit 0d1f7ce

Browse files
committed
WIP
1 parent 2674dab commit 0d1f7ce

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

shared/fs/nav-header/mobile-header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const MaybePublicTag = ({path}: {path: T.FS.Path}) =>
2424
FS.hasPublicTag(path) ? <Kb.Meta title="public" backgroundColor={Kb.Styles.globalColors.green} /> : null
2525

2626
const FilesTabStatusIcon = () => {
27-
const uploadIcon = useFSState(s => s.getUploadIconForFilesTab())
27+
const uploadIcon = FS.useFSState(s => s.getUploadIconForFilesTab())
2828
return uploadIcon ? <Kbfs.UploadIcon uploadIcon={uploadIcon} style={styles.filesTabStatusIcon} /> : null
2929
}
3030

shared/router-v2/router.native.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const tabStackOptions = ({
6363

6464
// On phones, each tab stack only contains its root screen. All other routes live in
6565
// the root stack (alongside chatConversation) so they render above the tab bar.
66-
const tabRootNameSet = new Set(Object.values(tabRoots).filter(Boolean))
66+
const tabRootNameSet = new Set<string>(Object.values(tabRoots).filter(Boolean))
6767
const phoneRootRoutes = Object.fromEntries(
6868
Object.entries(tabRoutes).filter(([name]) => !tabRootNameSet.has(name))
6969
) as typeof tabRoutes

shared/settings/root-desktop-tablet.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ const settingsScreens = routeMapToScreenElements(
9191
makeLayout,
9292
makeOptions,
9393
false,
94+
false,
9495
false
9596
)
9697

0 commit comments

Comments
 (0)