From 1e8c66176bae88eeaa7f269d2918d6e04b3605fc Mon Sep 17 00:00:00 2001 From: poyrazavsever Date: Sun, 7 Jun 2026 01:22:44 +0300 Subject: [PATCH] fix: resolve layout overflow by adding min-width constraints and update Next.js route type path --- components/layout/dashboard-shell.tsx | 4 ++-- next-env.d.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/layout/dashboard-shell.tsx b/components/layout/dashboard-shell.tsx index 7bda979..35598da 100644 --- a/components/layout/dashboard-shell.tsx +++ b/components/layout/dashboard-shell.tsx @@ -70,7 +70,7 @@ export function DashboardShell({ children, user }: DashboardShellProps) { ) : null} -
+
-
{children}
+
{children}
diff --git a/next-env.d.ts b/next-env.d.ts index 9edff1c..c4b7818 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/types/routes.d.ts"; +import "./.next/dev/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.