From 59dcedeea25804188b3503dbf166fa794af20612 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 30 Aug 2023 16:15:06 -0700 Subject: Fix: remove bottom bar during onboard --- src/view/com/auth/Onboarding.tsx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') 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() -- cgit 1.4.1