Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Update layout.tsx to fix 404 not rendering (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
acouch committed Sep 18, 2024
1 parent 3f262d3 commit 8cd8ac6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@ type Props = {
};

export default function RootLayout({ children }: Props) {
return children;
return (
<html suppressHydrationWarning>
<body>{children}</body>
</html>
);
}

0 comments on commit 8cd8ac6

Please sign in to comment.