From ef9c3a9c6312b7d5618a03d4746d4e195c38eecb Mon Sep 17 00:00:00 2001 From: Vishnu Date: Fri, 29 Aug 2025 16:39:14 +0530 Subject: [PATCH] dashboard sidebar updated --- app/src/components/Dashboard/SidePannel.tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/app/src/components/Dashboard/SidePannel.tsx b/app/src/components/Dashboard/SidePannel.tsx index db7d203..2c0ad64 100644 --- a/app/src/components/Dashboard/SidePannel.tsx +++ b/app/src/components/Dashboard/SidePannel.tsx @@ -64,7 +64,7 @@ const SidePannel: React.FC = ({ setActiveTab, activeTab }) => { if (projectSocket) { const handleResponse = (data: any) => { if (data.message === "Project created successfully") { - setLoadingProgress(1) + setLoadingProgress(1); navigate(`/projects/${data.data.projectId}`); } projectSocket.off("v1-project:response:add", handleResponse); // Clean up @@ -141,7 +141,10 @@ const SidePannel: React.FC = ({ setActiveTab, activeTab }) => { activeTab === "Tutorials" ? "option-list active" : "option-list" } title="coming soon" - onClick={() => setActiveTab("Tutorials")} + onClick={() => { + // setActiveTab("Tutorials"); + console.warn("Tutorials comming soon"); + }} > Tutorials @@ -153,14 +156,17 @@ const SidePannel: React.FC = ({ setActiveTab, activeTab }) => { : "option-list" } title="coming soon" - onClick={() => setActiveTab("Documentation")} + onClick={() => { + // setActiveTab("Documentation"); + console.warn("Documentation comming soon"); + }} > Documentation -
-
+
+
Settings
@@ -175,7 +181,7 @@ const SidePannel: React.FC = ({ setActiveTab, activeTab }) => { Log out
-
+
Help & Feedback