fix(component): app sidebar will never float when menu not opened (#5529)

This commit is contained in:
Cats Juice
2024-01-09 06:46:09 +00:00
parent d376ea441d
commit 611c6e85bb

View File

@@ -61,7 +61,7 @@ export function AppSidebar(props: AppSidebarProps): ReactElement {
// so that the sidebar can be closed on mobile by default
setOpen(!isFloating);
}
setFloating(isFloating && !!open);
setFloating(isFloating);
}
const dOnResize = debounce(onResize, 50);