feat: updated routes

This commit is contained in:
Anish Sarkar 2025-12-27 19:03:46 +05:30
parent 7ad232dbbe
commit 65dc97df99

View file

@ -8,8 +8,8 @@ export default function SearchSpaceDashboardPage() {
const { search_space_id } = useParams();
useEffect(() => {
router.push(`/dashboard/${search_space_id}/chats`);
}, []);
router.push(`/dashboard/${search_space_id}/new-chat`);
}, [router, search_space_id]);
return <></>;
}