From 8a46390e1f7278fd9d80ff7571a81d2574248690 Mon Sep 17 00:00:00 2001 From: vamsikrishnamathala Date: Mon, 26 May 2025 14:07:26 +0530 Subject: [PATCH] fix: fixed layout overflow issue --- web/app/(all)/layout.tsx | 4 ++-- web/app/(home)/layout.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/app/(all)/layout.tsx b/web/app/(all)/layout.tsx index 0238526488b..32589c4bf09 100644 --- a/web/app/(all)/layout.tsx +++ b/web/app/(all)/layout.tsx @@ -23,9 +23,9 @@ export const viewport: Viewport = { export default function AppLayout({ children }: { children: React.ReactNode }) { return ( -
+ <> {children} -
+ ); } diff --git a/web/app/(home)/layout.tsx b/web/app/(home)/layout.tsx index 56380fb66b9..0ed40f86b2a 100644 --- a/web/app/(home)/layout.tsx +++ b/web/app/(home)/layout.tsx @@ -16,6 +16,6 @@ export const viewport: Viewport = { export default function HomeLayout({ children }: { children: React.ReactNode }) { return ( -
{children}
+ <>{children} ); }