diff --git a/packages/features/src/components/app-layout.tsx b/packages/features/src/components/app-layout.tsx index abb13386..0e120576 100644 --- a/packages/features/src/components/app-layout.tsx +++ b/packages/features/src/components/app-layout.tsx @@ -5,9 +5,10 @@ import { useLocation } from "react-router-dom" interface AppLayoutProps { children: React.ReactNode + className?: string } -export const AppLayout = ({ children }: AppLayoutProps) => { +export const AppLayout = ({ children, className }: AppLayoutProps) => { const location = useLocation() // biome-ignore lint: dependent just on location useEffect(() => { @@ -17,7 +18,10 @@ export const AppLayout = ({ children }: AppLayoutProps) => { } }, [location]) return ( -