Revert "feat: add ability for negative commissions"

This reverts commit dd66f8cc96.
This commit is contained in:
Neal 2023-05-10 09:18:27 -04:00
parent 98f201fd44
commit c09990736a

View file

@ -235,12 +235,12 @@ const getSchema = locale => {
return Yup.object().shape({
cashIn: Yup.number()
.label('Cash-in')
.min(-15)
.min(0)
.max(percentMax)
.required(),
cashOut: Yup.number()
.label('Cash-out')
.min(-15)
.min(0)
.max(percentMax)
.required(),
fixedFee: Yup.number()