Skip to content

Commit 3bbf7f5

Browse files
authored
fix(auth): copilot routes (#2977)
* Fix copilot auth * Fix * Fix * Fix
1 parent 6868325 commit 3bbf7f5

File tree

2 files changed

+1
-2
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components

2 files changed

+1
-2
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/tool-call/tool-call.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,6 @@ async function handleRun(
12601260
const instance = getClientTool(toolCall.id)
12611261

12621262
if (!instance && isIntegrationTool(toolCall.name)) {
1263-
setToolCallState(toolCall, 'executing')
12641263
onStateChange?.('executing')
12651264
try {
12661265
await useCopilotStore.getState().executeIntegrationTool(toolCall.id)

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/components/deploy-modal/deploy-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ export function DeployModal({
496496
</div>
497497
)}
498498
{apiDeployWarnings.length > 0 && (
499-
<div className='mb-3 rounded-[4px] border border-amber-500/30 bg-amber-500/10 p-3 text-amber-700 dark:text-amber-400 text-sm'>
499+
<div className='mb-3 rounded-[4px] border border-amber-500/30 bg-amber-500/10 p-3 text-amber-700 text-sm dark:text-amber-400'>
500500
<div className='font-semibold'>Deployment Warning</div>
501501
{apiDeployWarnings.map((warning, index) => (
502502
<div key={index}>{warning}</div>

0 commit comments

Comments
 (0)