mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-05 22:02:39 +02:00
Added breadcrumbs
This commit is contained in:
parent
49a5d048bf
commit
c884502737
5 changed files with 290 additions and 3 deletions
15
surfsense_web/app/dashboard/[search_space_id]/page.tsx
Normal file
15
surfsense_web/app/dashboard/[search_space_id]/page.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"use client";
|
||||
|
||||
import { useParams, useRouter } from "next/navigation";
|
||||
import { useEffect } from "react";
|
||||
|
||||
export default function SearchSpaceDashboardPage() {
|
||||
const router = useRouter();
|
||||
const { search_space_id } = useParams();
|
||||
|
||||
useEffect(() => {
|
||||
router.push(`/dashboard/${search_space_id}/chats`);
|
||||
}, []);
|
||||
|
||||
return <></>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue