diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx index 22d1e16a4..395c4c61d 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/sub-block.tsx @@ -157,6 +157,7 @@ const renderLabel = ( isWandEnabled: boolean isPreview: boolean isStreaming: boolean + disabled: boolean onSearchClick: () => void onSearchBlur: () => void onSearchChange: (value: string) => void @@ -175,6 +176,7 @@ const renderLabel = ( isWandEnabled, isPreview, isStreaming, + disabled, onSearchClick, onSearchBlur, onSearchChange, @@ -208,7 +210,7 @@ const renderLabel = ( {/* Wand inline prompt */} - {isWandEnabled && !isPreview && ( + {isWandEnabled && !isPreview && !disabled && (