diff --git a/ui/admin/app/components/agent/shared/ToolAuthenticationStatus.tsx b/ui/admin/app/components/agent/shared/ToolAuthenticationStatus.tsx index 0ea87a8e6..3201b9d17 100644 --- a/ui/admin/app/components/agent/shared/ToolAuthenticationStatus.tsx +++ b/ui/admin/app/components/agent/shared/ToolAuthenticationStatus.tsx @@ -58,7 +58,7 @@ export function ToolAuthenticationStatus({ const handleDeauthorize = async () => { if (!toolInfo) return; - const { error } = await deauthorize.executeAsync(namespace, entityId, [ + const [error] = await deauthorize.executeAsync(namespace, entityId, [ tool, ]); diff --git a/ui/admin/app/components/workflow/steps/StepBase.tsx b/ui/admin/app/components/workflow/steps/StepBase.tsx index a7fee00fe..463758100 100644 --- a/ui/admin/app/components/workflow/steps/StepBase.tsx +++ b/ui/admin/app/components/workflow/steps/StepBase.tsx @@ -74,7 +74,7 @@ export function StepBase({