diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/tool-input.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/tool-input.tsx index ea7a56f914..cb1bfa38f5 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/tool-input.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/tool-input.tsx @@ -210,7 +210,7 @@ function GenericSyncWrapper({ const [storeValue] = useSubBlockValue(blockId, paramId) useEffect(() => { - if (storeValue) { + if (storeValue != null) { const transformedValue = transformer ? transformer(storeValue) : String(storeValue) if (transformedValue !== value) { onChange(transformedValue)