Fix apple/google pay block

This commit is contained in:
Alex P. 2024-10-21 17:38:55 +03:00
parent 9b270e5696
commit faeee86ab3
No known key found for this signature in database
GPG key ID: 54487A734A204D71
2 changed files with 2 additions and 2 deletions

View file

@ -107,7 +107,7 @@ class BlocksPaymentMethod extends AbstractPaymentMethodType {
'id' => $this->name,
'title' => $paypal_data['title'], // See if we should use another.
'description' => $paypal_data['description'], // See if we should use another.
'enabled' => $paypal_data['enabled'], // This button is enabled when PayPal buttons are.
'enabled' => $paypal_data['smartButtonsEnabled'], // This button is enabled when PayPal buttons are.
'scriptData' => $this->button->script_data(),
);
}