Empty string makes it happy... null did not

This commit is contained in:
Matt Sykes 2026-04-20 10:08:57 -04:00
parent f0e01ccf79
commit b66d44fbb5

View file

@ -455,8 +455,8 @@ export default {
zipCodeCtu: this.locationInfo.zipCodeCtu,
amount: this.adyenPriceTotal,
city: this.locationInfo.city,
street: this.locationInfo.address,
houseNumberOrName: this.locationInfo.address2,
street: this.locationInfo.address ?? "",
houseNumberOrName: this.locationInfo.address2 ?? "",
zipCode: this.locationInfo.zipCode,
stateOrProvince: this.locationInfo.state,
returnUrl: applicationConfig.PIA_ADYEN_RETURN_URL,