Fix: remove bottom bar during onboard

zio/stable
Paul Frazee 2023-08-30 16:15:06 -07:00
parent 8bc8dcc094
commit 59dcedeea2
1 changed files with 4 additions and 0 deletions

View File

@ -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()