From 54ed579dbdb1e556b70dc99e29ef0aa20d3b5f60 Mon Sep 17 00:00:00 2001 From: waleed Date: Thu, 12 Feb 2026 12:05:49 -0800 Subject: [PATCH] fix spacing and optional tag --- .../components/tool-input/components/tools/parameter.tsx | 2 +- .../tool-input/components/tools/sub-block-renderer.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/parameter.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/parameter.tsx index ff8f43bfe..71d244c91 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/parameter.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/parameter.tsx @@ -91,7 +91,7 @@ export function ParameterWithLabel({ {title} {isRequired && visibility === 'user-only' && *} {visibility !== 'user-only' && ( - + (optional) )} diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/sub-block-renderer.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/sub-block-renderer.tsx index 64c68b058..6dd0cd799 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/sub-block-renderer.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tools/sub-block-renderer.tsx @@ -84,7 +84,7 @@ export function ToolSubBlockRenderer({ const labelSuffix = useMemo( () => isOptionalForUser ? ( - + (optional) ) : null,