From 07979296cf85df265e2db994ed047568bad02886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=ED=98=84=EC=A1=B0?= Date: Tue, 8 Oct 2024 14:25:33 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EB=A6=AC=EB=B7=B0=EC=9A=94=EC=B2=AD?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=EC=97=90=EC=84=9C=20=ED=97=A4?= =?UTF-8?q?=EB=8D=94=20=EC=9D=B4=EB=8F=99=ED=95=A0=20=EB=95=8C=20=20?= =?UTF-8?q?=EC=97=90=EB=9F=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Header/WorkspaceNavigation.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Header/WorkspaceNavigation.tsx b/frontend/src/components/Header/WorkspaceNavigation.tsx index 80df23e..a80fe05 100644 --- a/frontend/src/components/Header/WorkspaceNavigation.tsx +++ b/frontend/src/components/Header/WorkspaceNavigation.tsx @@ -19,7 +19,9 @@ export default function WorkspaceNavigation() { const workspaces = workspacesResponse?.workspaceResponses || []; const activeWorkspaceId = workspaceId ?? workspaces[0]?.id; - const activeProjectId: number = Number(location.pathname.split('/')[3] || '0'); + const activeProjectId: number = location.pathname.includes('/request') + ? 0 + : Number(location.pathname.split('/')[3] || '0'); if (workspaces.length === 0) { return
;