Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

isLoading 상태 제거, 사용하지 않는 파일 삭제 #31

Merged
merged 2 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions apps/frontend/src/features/canvas/lib/updateNodesMap.ts
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

무슨 의도의 코드였을까요..,

This file was deleted.

4 changes: 2 additions & 2 deletions apps/frontend/src/widgets/TopNavView/ui/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ interface TopNavProps {
isExpanded: boolean;
}
export function TopNavView({ onExpand, isExpanded }: TopNavProps) {
const { data, isLoading } = useCurrentWorkspace();
const { data } = useCurrentWorkspace();

const getWorkspaceTitle = () => {
if (!data || isLoading) return "로딩 중";
if (!data) return "";

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

Expand Down
Loading