You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

paymentInitialValues.js 214B

1234567
  1. export default (payment) => ({
  2. payerName: payment?.payerName || "",
  3. companyName: payment?.companyName || "",
  4. type: payment?.type || "",
  5. date: payment?.date || "",
  6. offerName: payment?.offerName || "",
  7. });