Fix for wrong shipping schema in checkout (https://github.com/woocommerce/woocommerce-blocks/pull/8291)
Co-authored-by: Niels Lange <info@nielslange.de>
This commit is contained in:
parent
06b9b29454
commit
729bec698c
|
@ -47,7 +47,7 @@ class CheckoutSchema extends AbstractSchema {
|
|||
public function __construct( ExtendSchema $extend, SchemaController $controller ) {
|
||||
parent::__construct( $extend, $controller );
|
||||
$this->billing_address_schema = $this->controller->get( BillingAddressSchema::IDENTIFIER );
|
||||
$this->shipping_address_schema = $this->controller->get( BillingAddressSchema::IDENTIFIER );
|
||||
$this->shipping_address_schema = $this->controller->get( ShippingAddressSchema::IDENTIFIER );
|
||||
$this->image_attachment_schema = $this->controller->get( ImageAttachmentSchema::IDENTIFIER );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue