From b66d44fbb5122cb369c1edd660cd1bcc14a9d79f Mon Sep 17 00:00:00 2001 From: Matt Sykes Date: Mon, 20 Apr 2026 10:08:57 -0400 Subject: [PATCH] Empty string makes it happy... null did not --- src/layouts/payment-adyen/payment-adyen.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/payment-adyen/payment-adyen.vue b/src/layouts/payment-adyen/payment-adyen.vue index 02e5d4455..5b3a663ea 100644 --- a/src/layouts/payment-adyen/payment-adyen.vue +++ b/src/layouts/payment-adyen/payment-adyen.vue @@ -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,