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

11 lines
266 B
TypeScript
Raw Normal View History

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