import { Suspense } from 'react'; import ChatsPageClient from './chats-client'; interface PageProps { params: { search_space_id: string; }; } export default async function ChatsPage({ params }: PageProps) { // Get search space ID from the route parameter const { search_space_id: searchSpaceId } = await Promise.resolve(params); return (
}>
); }