From ff13b1f43b47569072ba15ad00d333045a8e37a4 Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Fri, 13 Feb 2026 12:17:26 -0800 Subject: [PATCH] remove credential no access marker --- .../components/credential-selector/credential-selector.tsx | 1 - .../tool-input/components/tool-credential-selector.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/credential-selector/credential-selector.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/credential-selector/credential-selector.tsx index 13cf2c776..8b22f7b02 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/credential-selector/credential-selector.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/credential-selector/credential-selector.tsx @@ -149,7 +149,6 @@ export function CredentialSelector({ if (selectedCredentialSet) return selectedCredentialSet.name if (selectedCredential) return selectedCredential.name if (inaccessibleCredentialName) return inaccessibleCredentialName - if (selectedId && !credentialsLoading) return 'Credential (no access)' return '' }, [ selectedCredentialSet, diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tool-credential-selector.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tool-credential-selector.tsx index 910bb6a48..912852533 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tool-credential-selector.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/tool-input/components/tool-credential-selector.tsx @@ -117,7 +117,6 @@ export function ToolCredentialSelector({ const resolvedLabel = useMemo(() => { if (selectedCredential) return selectedCredential.name if (inaccessibleCredentialName) return inaccessibleCredentialName - if (selectedId && !credentialsLoading) return 'Credential (no access)' return '' }, [selectedCredential, inaccessibleCredentialName, selectedId, credentialsLoading])