diff --git a/packages/extension-base/src/background/handlers/Extension.ts b/packages/extension-base/src/background/handlers/Extension.ts index a7f8ef0da4..9c19f9fd83 100644 --- a/packages/extension-base/src/background/handlers/Extension.ts +++ b/packages/extension-base/src/background/handlers/Extension.ts @@ -130,7 +130,7 @@ export default class Extension { this.#state.updateAuthorizedAccounts(authorizedAccountsDiff); - // cycle through default account selection for auth and remove any occurence of the account + // cycle through default account selection for auth and remove any occurrence of the account const newDefaultAuthAccounts = this.#state.defaultAuthAccountSelection.filter((defaultSelectionAddress) => defaultSelectionAddress !== address); this.#state.updateDefaultAuthAccounts(newDefaultAuthAccounts); diff --git a/packages/extension-base/src/page/index.ts b/packages/extension-base/src/page/index.ts index 28e3aa1724..0621954eb2 100644 --- a/packages/extension-base/src/page/index.ts +++ b/packages/extension-base/src/page/index.ts @@ -12,7 +12,7 @@ import Injected from './Injected.js'; // when sending a message from the injector to the extension, we // - create an event - this we send to the loader // - the loader takes this event and uses port.postMessage to background -// - on response, the loader creates a reponse event +// - on response, the loader creates a response event // - this injector, listens on the events, maps it to the original // - resolves/rejects the promise with the result (or sub data) diff --git a/packages/extension-dapp/src/bundle.ts b/packages/extension-dapp/src/bundle.ts index 7cbdcc1a19..b7ff6a9cec 100644 --- a/packages/extension-dapp/src/bundle.ts +++ b/packages/extension-dapp/src/bundle.ts @@ -156,8 +156,8 @@ export function web3Enable (originName: string, compatInits: (() => Promise