SurfSense/surfsense_web/app/dashboard/[search_space_id]/page.tsx

11 lines
270 B
TypeScript
Raw Normal View History

import { redirect } from "next/navigation";
export default async function SearchSpaceDashboardPage({
params,
}: {
params: Promise<{ search_space_id: string }>;
}) {
const { search_space_id } = await params;
redirect(`/dashboard/${search_space_id}/new-chat`);
2025-08-02 22:46:15 -07:00
}