diff --git a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts index f15faccf7..2a4d681d9 100644 --- a/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts +++ b/frontend/src/app/components/accelerate-checkout/accelerate-checkout.component.ts @@ -757,9 +757,9 @@ export class AccelerateCheckout implements OnInit, OnDestroy { billing: { givenName: assumedGivenName, familyName: assumedFamilyName, - addressLines: [cardOnFile.card.billing.addressLine1], - city: cardOnFile.card.billing.locality, - state: cardOnFile.card.billing.administrativeDistrictLevel1, + addressLines: [cardOnFile.card.billing.addressLine1 ?? ''], + city: cardOnFile.card.billing.locality ?? '', + state: cardOnFile.card.billing.administrativeDistrictLevel1 ?? '', countyCode: cardOnFile.card.billing.country, } }