diff --git a/client/components/Layout.tsx b/client/components/Layout.tsx index 01cc1ed5..6075a312 100644 --- a/client/components/Layout.tsx +++ b/client/components/Layout.tsx @@ -34,7 +34,7 @@ interface LayoutProps { children: React.ReactNode; } -export default function Layout({ children }: LayoutProps) { +export default function CodeLayout({ children }: LayoutProps) { const location = useLocation(); const { user, profile, roles, signOut, loading, profileComplete } = useAuth(); const isOwner = Array.isArray(roles) && roles.includes("owner");