Skip to content

Commit afa8b7a

Browse files
Merge pull request #31 from boostcampwm-2024/refactor-fe-#27
isLoading 상태 제거, 사용하지 않는 파일 삭제
2 parents a3c2097 + 0c8604b commit afa8b7a

File tree

2 files changed

+2
-29
lines changed

2 files changed

+2
-29
lines changed

apps/frontend/src/features/canvas/lib/updateNodesMap.ts

Lines changed: 0 additions & 27 deletions
This file was deleted.

apps/frontend/src/widgets/TopNavView/ui/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ interface TopNavProps {
1111
isExpanded: boolean;
1212
}
1313
export function TopNavView({ onExpand, isExpanded }: TopNavProps) {
14-
const { data, isLoading } = useCurrentWorkspace();
14+
const { data } = useCurrentWorkspace();
1515

1616
const getWorkspaceTitle = () => {
17-
if (!data || isLoading) return "로딩 중";
17+
if (!data) return "";
1818

1919
if (data.workspace.workspaceId === "main") return "공용 워크스페이스";
2020

0 commit comments

Comments
 (0)