mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
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`);
|
|
}
|