From 6a5bbb5c60c019a65626a3c4dc8a78a351afe36f Mon Sep 17 00:00:00 2001 From: Prince Baghel Date: Fri, 20 Sep 2024 17:06:26 +0530 Subject: [PATCH] patch: redirect to new chat --- src/app/dashboard/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 65e4a7e..f54c970 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -24,6 +24,6 @@ export default async function Page() { console.log("org_id", org_id); console.log("userId", userId); console.log("\n\n\n\n\n\n"); - redirect(`/dashboard/${org_slug}/chat/${Number(chatId)}`); + redirect(`/dashboard/chat/${Number(chatId)}`); // redirect(`/dashboard/user`); }