Skip to content

Commit

Permalink
Merge pull request #105 from mollie/chore/fix-delete-surcharge
Browse files Browse the repository at this point in the history
Fix delete surcharge
  • Loading branch information
NghiaDTr authored Nov 22, 2024
2 parents 533a0d3 + 9de9dc7 commit 2dea91a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ const AvailabilityDetailsForm = (props: TAvailabilityDetailsFormProps) => {

clonedObject[selectedCountry][selectedCurrency].minAmount = '';
clonedObject[selectedCountry][selectedCurrency].maxAmount = '';
clonedObject[selectedCountry][selectedCurrency].surchargeCost = {
percentageAmount: 0,
fixedAmount: '',
};

formik.setValues(clonedObject);
};
Expand Down

0 comments on commit 2dea91a

Please sign in to comment.