Skip to content

Commit cd207ed

Browse files
ivicacclaude
andcommitted
2311 client - Remove loading skeleton from WorkflowChatSidebar
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 027b88c commit cd207ed

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

client/src/pages/automation/workflow-chat/components/WorkflowChatSidebar.tsx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import {Skeleton} from '@/components/ui/skeleton';
21
import {useWorkspaceStore} from '@/pages/automation/stores/useWorkspaceStore';
32
import {useWorkflowChatStore} from '@/pages/automation/workflow-chat/stores/useWorkflowChatStore';
43
import {LeftSidebarNav, LeftSidebarNavItem} from '@/shared/layout/LeftSidebarNav';
@@ -53,18 +52,6 @@ const WorkflowChatSidebar = () => {
5352
return result;
5453
}, [isLoading, data]);
5554

56-
if (isLoading) {
57-
return (
58-
<div className="space-y-2 p-4">
59-
<Skeleton className="h-4 w-1/2" />
60-
61-
{[1, 2, 3].map((value) => (
62-
<Skeleton className="h-6" key={value} />
63-
))}
64-
</div>
65-
);
66-
}
67-
6855
return (
6956
<>
7057
{workflowsByProject.size === 0 && data ? (

0 commit comments

Comments
 (0)