fixed the actions on the bin settings and the bottom navigator opening up the side when buttons other than more waere clicked

This commit is contained in:
csawatzky 2025-04-24 10:57:21 -06:00
parent 9105b4be3a
commit 5d697091e0
3 changed files with 26 additions and 18 deletions

View file

@ -125,7 +125,7 @@ export default function Header() {
</Toolbar>
</AppBar>
<SideNavigator open={navOpen} onOpen={() => {setNavOpen(true)}} onClose={() => {setNavOpen(false)}} />
{isMobile && <BottomNavigator setNavOpen={() => {setNavOpen(true)}} sideIsOpen={navOpen} />}
{isMobile && <BottomNavigator setNavOpen={isOpen => {setNavOpen(isOpen)}} sideIsOpen={navOpen} />}
</>
)
}