diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-08-30 16:15:06 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-08-30 16:15:06 -0700 |
commit | 59dcedeea25804188b3503dbf166fa794af20612 (patch) | |
tree | 6986e810623b9fd423f6e3a645b403497bb68169 /src | |
parent | 8bc8dcc094cd21daec639ff8db5ebb08dc5fe92f (diff) | |
download | voidsky-59dcedeea25804188b3503dbf166fa794af20612.tar.zst |
Fix: remove bottom bar during onboard
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/Onboarding.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/com/auth/Onboarding.tsx b/src/view/com/auth/Onboarding.tsx index 429fdddb3..065d4d244 100644 --- a/src/view/com/auth/Onboarding.tsx +++ b/src/view/com/auth/Onboarding.tsx @@ -12,6 +12,10 @@ export const Onboarding = observer(() => { const pal = usePalette('default') const store = useStores() + React.useEffect(() => { + store.shell.setMinimalShellMode(true) + }, [store]) + const next = () => store.onboarding.next() const skip = () => store.onboarding.skip() |