Fix another batch of typos

This commit is contained in:
Daniel Dudzic 2025-03-24 14:27:35 +01:00
parent 9fb76a966a
commit 61a265a1a4
No known key found for this signature in database
GPG key ID: 31B40D33E3465483
8 changed files with 11 additions and 11 deletions

View file

@ -289,17 +289,17 @@ const bootstrap = () => {
}
if ( context === 'checkout' ) {
const checkoutBootstap = new CheckoutBootstrap(
const checkoutBootstrap = new CheckoutBootstrap(
PayPalCommerceGateway,
renderer,
spinner,
errorHandler
);
checkoutBootstap.init();
checkoutBootstrap.init();
buttonModuleWatcher.registerContextBootstrap(
'checkout',
checkoutBootstap
checkoutBootstrap
);
}

View file

@ -15,7 +15,7 @@ class PreviewButtonManager {
/**
* Resolves the promise.
* Used by `this.boostrap()` to process enqueued initialization logic.
* Used by `this.bootstrap()` to process enqueued initialization logic.
*/
#onInitResolver;