Skip to content

Commit 2741413

Browse files
author
Theodore Li
committed
Fix lint
1 parent 6328c99 commit 2741413

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/tools/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ export async function executeTool(
829829
}
830830

831831
const strippedOutput = isCustomTool(normalizedToolId)
832-
? (finalResult.output || {})
832+
? finalResult.output || {}
833833
: stripInternalFields(finalResult.output || {})
834834

835835
return {
@@ -886,7 +886,7 @@ export async function executeTool(
886886
}
887887

888888
const strippedOutput = isCustomTool(normalizedToolId)
889-
? (finalResult.output || {})
889+
? finalResult.output || {}
890890
: stripInternalFields(finalResult.output || {})
891891

892892
return {

0 commit comments

Comments
 (0)