From e0c0447fb64adfd49a7be8bad978140042e67cbc Mon Sep 17 00:00:00 2001 From: Valerio Ageno Date: Thu, 17 Oct 2024 12:17:38 +0200 Subject: [PATCH] fix: remove useless container --- .../src/routes/documentation/__root.tsx | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/apps/documentation/src/routes/documentation/__root.tsx b/apps/documentation/src/routes/documentation/__root.tsx index f02698de..b27e26c9 100644 --- a/apps/documentation/src/routes/documentation/__root.tsx +++ b/apps/documentation/src/routes/documentation/__root.tsx @@ -4,18 +4,16 @@ import MdxProvider from '../../components/mdx-provider' import EditPage from '../../components/edit-page' interface RootRouteProps { - children: ReactNode + children: ReactNode } export default function RootRoute({ children }: RootRouteProps): JSX.Element { - return ( - - - - {children} - - - - - ) + return ( + + + {children} + + + + ) }