From 7cb5a9120a62471e7815e035516e56995610847a Mon Sep 17 00:00:00 2001 From: Vamsi Krishna <46787868+vamsikrishnamathala@users.noreply.github.com> Date: Mon, 26 May 2025 14:28:56 +0530 Subject: [PATCH] [WEB-4173]fix: fixed layout overflow issue #7119 --- 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 023852648..32589c4bf 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 56380fb66..0ed40f86b 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} ); }