[WEB-4173]fix: fixed layout overflow issue #7119

This commit is contained in:
Vamsi Krishna 2025-05-26 14:28:56 +05:30 committed by GitHub
parent 84fc81dd98
commit 7cb5a9120a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -23,9 +23,9 @@ export const viewport: Viewport = {
export default function AppLayout({ children }: { children: React.ReactNode }) { export default function AppLayout({ children }: { children: React.ReactNode }) {
return ( return (
<section> <>
<PreloadResources /> <PreloadResources />
{children} {children}
</section> </>
); );
} }

View file

@ -16,6 +16,6 @@ export const viewport: Viewport = {
export default function HomeLayout({ children }: { children: React.ReactNode }) { export default function HomeLayout({ children }: { children: React.ReactNode }) {
return ( return (
<section>{children}</section> <>{children}</>
); );
} }