From 5f919a891de59e9ddf835122cedece9d48f86a31 Mon Sep 17 00:00:00 2001 From: Aaron Couch Date: Tue, 17 Sep 2024 12:52:02 -0400 Subject: [PATCH] Update layout.tsx to fix 404 not rendering (#199) --- frontend/src/app/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index e914be1af..993d66550 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -6,5 +6,9 @@ type Props = { }; export default function RootLayout({ children }: Props) { - return children; + return ( + + {children} + + ); }