From a85b1e574c30684f9debd746275b061b3b6cd2c3 Mon Sep 17 00:00:00 2001 From: djk01281 Date: Mon, 2 Dec 2024 02:44:51 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9B=8C=ED=81=AC=20=EC=8A=A4=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=8A=A4=20=EC=9D=B4=EB=A6=84=20=EC=9E=84=EC=8B=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/features/pageSidebar/ui/WorkspaceNav/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/frontend/src/features/pageSidebar/ui/WorkspaceNav/index.tsx b/apps/frontend/src/features/pageSidebar/ui/WorkspaceNav/index.tsx index 448b6696..9757b00f 100644 --- a/apps/frontend/src/features/pageSidebar/ui/WorkspaceNav/index.tsx +++ b/apps/frontend/src/features/pageSidebar/ui/WorkspaceNav/index.tsx @@ -3,9 +3,11 @@ interface WorkspaceNavProps { } export function WorkspaceNav({ workspaceTitle }: WorkspaceNavProps) { + // 빌드 에러 해결을 위한 임시 코드. + console.log(workspaceTitle); return (
-

{workspaceTitle}

+

{"환영합니다 👋🏻"}

); }