Compare commits
1 Commits
main
...
fix-moltbo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1005c4752 |
@ -1,3 +1,4 @@
|
||||
import { Suspense } from 'react'
|
||||
import { MoltbotChat } from './MoltbotChat'
|
||||
|
||||
export const metadata = {
|
||||
@ -8,7 +9,9 @@ export const metadata = {
|
||||
export default function MoltbotPage() {
|
||||
return (
|
||||
<div className="container mx-auto max-w-4xl py-8">
|
||||
<MoltbotChat />
|
||||
<Suspense fallback={<div className="flex h-[50vh] items-center justify-center text-slate-400">Loading chat...</div>}>
|
||||
<MoltbotChat />
|
||||
</Suspense>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user