Skip to content

Commit

Permalink
fixed conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammedMaaz committed Dec 8, 2023
1 parent ab6f481 commit 4ae1b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agenta-web/src/components/Playground/Views/TestView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ const App: React.FC<TestViewProps> = ({inputParams, optParams, variant, isChatVa
const funcs: Function[] = []
rootRef.current
?.querySelectorAll("[data-cy=testview-input-parameters-run-button]")
.forEach((btn) => funcs.push((btn as HTMLButtonElement).click))
.forEach((btn) => funcs.push(() => (btn as HTMLButtonElement).click()))

batchExecute(funcs, {allowRetry: true, batchSize: 10})
}
Expand Down

0 comments on commit 4ae1b9f

Please sign in to comment.