From a33d2d172330c1d12c0dfaaf244895112317ca6c Mon Sep 17 00:00:00 2001 From: codomposer Date: Wed, 29 Oct 2025 10:11:18 -0400 Subject: [PATCH] fixed missing a ; inside the { children: React.ReactNode; } in ./dashboard/final-example/app/dashboard/layout.tsx file --- dashboard/final-example/app/dashboard/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/final-example/app/dashboard/layout.tsx b/dashboard/final-example/app/dashboard/layout.tsx index 8fbc3232..d4e57ef5 100644 --- a/dashboard/final-example/app/dashboard/layout.tsx +++ b/dashboard/final-example/app/dashboard/layout.tsx @@ -1,6 +1,6 @@ import SideNav from '@/app/ui/dashboard/sidenav'; -export default function Layout({ children }: { children: React.ReactNode }) { +export default function Layout({ children }: { children: React.ReactNode; }) { return (