Skip to content

Commit

Permalink
Merge pull request #5513 from bcgov/dev-marshal-MD-intake
Browse files Browse the repository at this point in the history
3490 - Increment amountPaid field by 10
  • Loading branch information
milosdes authored Jan 13, 2025
2 parents c01819b + 19ea903 commit 45e114f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ export const ApplicationFeeTab = ({
if (formData?.paymentSource != 'creditcardonline' && formData?.paymentSource != 'init') {
if (formData?.amountPaid % 10 != 0 || formData?.amountPaid == 0) return true;
}
if (formData?.amountPaid % 10 != 0 && formData?.amountPaid > 0) return true;
}
const amountPaidField = (
<div className="col-lg-6 foi-details-col">
Expand All @@ -100,7 +101,7 @@ export const ApplicationFeeTab = ({
label="Amount Paid"
inputProps={{
"aria-labelledby": "amountpaid-label",
step: 0.01,
step: 10,
min: 0
}}
InputProps={{
Expand Down

0 comments on commit 45e114f

Please sign in to comment.