summit-registration-lite 5.0.45-beta.1 → 5.0.45-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -2471,7 +2471,7 @@ const StripeForm = ({
2471
2471
  address_line2: userProfile.address2 || '',
2472
2472
  address_city: userProfile.locality || '',
2473
2473
  address_state: userProfile.region || '',
2474
- address_zip: hidePostalCode ? null : data.zipCode,
2474
+ address_zip: hidePostalCode ? "" : data.zipCode,
2475
2475
  address_country: userProfile.country || '',
2476
2476
  email: userProfile.email
2477
2477
  });
@@ -2483,7 +2483,7 @@ const StripeForm = ({
2483
2483
  payTicket(provider, {
2484
2484
  token,
2485
2485
  stripe,
2486
- zipCode: hidePostalCode ? null : data.zipCode
2486
+ zipCode: hidePostalCode ? "" : data.zipCode
2487
2487
  });
2488
2488
  return;
2489
2489
  }