vision-agent / components /chat /ChatServer.tsx
MingruiZhang's picture
feat: Composer refactor and layout scroll (#62)
1f931d5 unverified
raw
history blame
460 Bytes
import ChatClient from './ChatClient';
import { auth } from '@/auth';
import { dbGetChat } from '@/lib/db/functions';
import { redirect } from 'next/navigation';
import { revalidatePath } from 'next/cache';
interface ChatServerProps {
id: string;
}
export default async function ChatServer({ id }: ChatServerProps) {
const chat = await dbGetChat(id);
if (!chat) {
revalidatePath('/');
redirect('/');
}
return <ChatClient chat={chat} />;
}