Spaces:
Running
Running
Commit ·
d1894ba
1
Parent(s): a8e1cb0
fix type
Browse files
app/(chat)/chat/[id]/page.tsx
CHANGED
|
@@ -43,5 +43,5 @@ export default async function ChatPage({ params }: ChatPageProps) {
|
|
| 43 |
notFound();
|
| 44 |
}
|
| 45 |
|
| 46 |
-
return <Chat id={chat.id}
|
| 47 |
}
|
|
|
|
| 43 |
notFound();
|
| 44 |
}
|
| 45 |
|
| 46 |
+
return <Chat id={chat.id} />;
|
| 47 |
}
|