Skip to content

Commit 0c9a6d7

Browse files
authored
Fix build (#34)
1 parent 991a081 commit 0c9a6d7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/app/page.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
import { Suspense } from "react";
12
import AiPage from "./ai/ai";
23
import "./ai/ai-globals.css";
34

45
export default function RootPage() {
5-
return <AiPage />;
6+
return (
7+
<Suspense>
8+
<AiPage />
9+
</Suspense>
10+
);
611
}

0 commit comments

Comments
 (0)