Skip to content

Commit 43d6439

Browse files
committed
fix: build error
1 parent 2a46a53 commit 43d6439

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function Layout({
1111
children,
1212
}: {
1313
children: React.ReactNode;
14-
}): JSX.Element {
14+
}): React.ReactElement {
1515
return (
1616
<html lang="en" className="dark">
1717
<body

app/not-found.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const metadata: Metadata = {
44
title: "404: Not Found",
55
};
66

7-
export default function Custom404(): JSX.Element {
7+
export default function Custom404(): React.ReactElement {
88
return (
99
<div className="flex flex-col items-center justify-center h-screen">
1010
<h1 className="font-bold m-4 text-6xl">404</h1>

0 commit comments

Comments
 (0)