diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f6caad8b..c70c6527 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -17,7 +17,9 @@ export default function RootLayout({ }>) { return ( - {children} + +
{children}
+ ) } diff --git a/src/components/left-nav-layout.tsx b/src/components/left-nav-layout.tsx index d5ec451c..5ed5ec94 100644 --- a/src/components/left-nav-layout.tsx +++ b/src/components/left-nav-layout.tsx @@ -47,9 +47,8 @@ export const LeftNavLayout = ({ children }: PropsWithChildren) => { return (
- {children} {activeItem && ( -
+
@@ -74,6 +73,7 @@ export const LeftNavLayout = ({ children }: PropsWithChildren) => {
)} + {children}
) }