Skip to content

Commit

Permalink
Merge pull request #155 from AppQuality/fix-cap-disabled-payload
Browse files Browse the repository at this point in the history
fix: fixed payload for no testers cap required
  • Loading branch information
d-beezee authored Jun 28, 2024
2 parents 6bdc8ff + d040b4e commit f33c70b
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 f33c70b

Please sign in to comment.