Turn home button into a 'go back to start of nav history'

This commit is contained in:
Paul Frazee 2022-11-22 12:19:38 -06:00
parent 9ff78bbc43
commit d608d67bfe
2 changed files with 7 additions and 1 deletions

View file

@ -134,7 +134,7 @@ export const MobileShell: React.FC = observer(() => {
if (store.nav.tab.current.url === '/') {
scrollElRef.current?.scrollToOffset({offset: 0})
} else {
store.nav.navigate('/')
store.nav.tab.goBackToZero()
}
}
const onPressMenu = () => setMainMenuActive(true)