config centralized

This commit is contained in:
Michael Freno
2026-01-01 02:22:33 -05:00
parent a6417c650f
commit 8e77727148
24 changed files with 519 additions and 143 deletions

View File

@@ -153,7 +153,7 @@ function AppLayout(props: { children: any }) {
const handleCenterTapRelease = (e: MouseEvent | TouchEvent) => {
if (typeof window === "undefined") return;
const currentIsMobile = window.innerWidth < 768;
const currentIsMobile = isMobile(window.innerWidth);
// Only hide left bar on mobile when it's visible
if (currentIsMobile && leftBarVisible()) {