Skip to content

Commit

Permalink
fix: fixed payload for no testers cap required
Browse files Browse the repository at this point in the history
  • Loading branch information
Kariamos committed Jun 28, 2024
1 parent 6bdc8ff commit d040b4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ const FormProvider = ({
size: !!values.targetSize
? parseInt(values.targetSize)
: undefined,
cap: !!values.targetCap ? parseInt(values.targetCap) : undefined,
cap: !!values.targetCap ? parseInt(values.targetCap) : -1, // -1 is passed for no tester cap required
},
browsers: values.browsersList?.map((browser) =>
parseInt(browser, 10)
Expand Down

0 comments on commit d040b4e

Please sign in to comment.