From b668373aa23cb5b13535e8a83f06487123763c3c Mon Sep 17 00:00:00 2001 From: WrenIX <133280015+wrenix@users.noreply.github.com> Date: Wed, 18 Mar 2026 11:07:28 +0100 Subject: [PATCH] fix: hide vertical nav rail on tablet to avoid duplicate navigation (#40) --- app/[locale]/calendar/page.tsx | 2 +- app/[locale]/contacts/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/[locale]/calendar/page.tsx b/app/[locale]/calendar/page.tsx index eb11e6a..f959642 100644 --- a/app/[locale]/calendar/page.tsx +++ b/app/[locale]/calendar/page.tsx @@ -604,7 +604,7 @@ export default function CalendarPage() { return (
{/* Left Navigation Rail */} - {!isMobile && ( + {!isMobile && !isTablet && (
diff --git a/app/[locale]/contacts/page.tsx b/app/[locale]/contacts/page.tsx index 0675ca9..1f55a87 100644 --- a/app/[locale]/contacts/page.tsx +++ b/app/[locale]/contacts/page.tsx @@ -430,7 +430,7 @@ export default function ContactsPage() { return (
- {!isMobile && ( + {!isMobile && !isTablet && (