diff --git a/src/app/shared/components/checkout/basket-invoice-address-widget/basket-invoice-address-widget.component.ts b/src/app/shared/components/checkout/basket-invoice-address-widget/basket-invoice-address-widget.component.ts
index bb154c46d5..eb457be7fb 100644
--- a/src/app/shared/components/checkout/basket-invoice-address-widget/basket-invoice-address-widget.component.ts
+++ b/src/app/shared/components/checkout/basket-invoice-address-widget/basket-invoice-address-widget.component.ts
@@ -14,7 +14,7 @@ import { whenTruthy } from 'ish-core/utils/operators';
 @Component({
   selector: 'ish-basket-invoice-address-widget',
   templateUrl: './basket-invoice-address-widget.component.html',
-  changeDetection: ChangeDetectionStrategy.OnPush,
+  changeDetection: ChangeDetectionStrategy.Default,
 })
 export class BasketInvoiceAddressWidgetComponent implements OnInit, OnDestroy {
   @Input() showErrors = true;
diff --git a/src/app/shared/components/checkout/basket-shipping-address-widget/basket-shipping-address-widget.component.ts b/src/app/shared/components/checkout/basket-shipping-address-widget/basket-shipping-address-widget.component.ts
index 7adf9f26cf..e10e814b98 100644
--- a/src/app/shared/components/checkout/basket-shipping-address-widget/basket-shipping-address-widget.component.ts
+++ b/src/app/shared/components/checkout/basket-shipping-address-widget/basket-shipping-address-widget.component.ts
@@ -14,7 +14,7 @@ import { whenTruthy } from 'ish-core/utils/operators';
 @Component({
   selector: 'ish-basket-shipping-address-widget',
   templateUrl: './basket-shipping-address-widget.component.html',
-  changeDetection: ChangeDetectionStrategy.OnPush,
+  changeDetection: ChangeDetectionStrategy.Default,
 })
 export class BasketShippingAddressWidgetComponent implements OnInit, OnDestroy {
   @Input() showErrors = true;