diff --git a/src/background/events.ts b/src/background/events.ts index bc99733d0..df728de09 100644 --- a/src/background/events.ts +++ b/src/background/events.ts @@ -56,7 +56,7 @@ export const emitter = createNanoEvents<{ requestAccountsResolved: (data: { origin: string; address: string; - /** {explicitly: true} means that user confirmed connection in a dialog. {false} means that we resolve a previously approved addess value */ + /** {explicitly: true} means that user confirmed connection in a dialog. {false} means that we resolve a previously approved address value */ explicitly: boolean; }) => void; screenView: (data: ScreenViewParams) => void; diff --git a/src/modules/crypto/aes.test.ts b/src/modules/crypto/aes.test.ts index 98b8ea110..c47ad932f 100644 --- a/src/modules/crypto/aes.test.ts +++ b/src/modules/crypto/aes.test.ts @@ -16,7 +16,7 @@ describe('encrypt function', () => { function createVeryLargeString() { // A large string will at some point be split into bytes by the encrypting function // and those bytes may be passed as arguments, but browsers have a different - // limit on maximum number of agruments: https://stackoverflow.com/a/22747272/3523645 + // limit on maximum number of arguments: https://stackoverflow.com/a/22747272/3523645 // As a solution we avoid doing that and have this test as a guard, but its outcome // may differ across javascript environments const uint8Array = crypto.getRandomValues(new Uint8Array(65536)); diff --git a/src/ui/DNA/pages/UpgradeDnaFlow/SelectDna.tsx b/src/ui/DNA/pages/UpgradeDnaFlow/SelectDna.tsx index 998519ecc..6aa0b6972 100644 --- a/src/ui/DNA/pages/UpgradeDnaFlow/SelectDna.tsx +++ b/src/ui/DNA/pages/UpgradeDnaFlow/SelectDna.tsx @@ -168,7 +168,7 @@ export function SelectDna() { textAlign: 'center', }} > - Backend is unavaliable + Backend is unavailable
Please, try again later diff --git a/src/ui/hardware-wallet/shared/verifySandbox.ts b/src/ui/hardware-wallet/shared/verifySandbox.ts index 8c7b689e6..9bdda195e 100644 --- a/src/ui/hardware-wallet/shared/verifySandbox.ts +++ b/src/ui/hardware-wallet/shared/verifySandbox.ts @@ -9,7 +9,7 @@ const walletPort = new PortMessageChannel({ export async function verifySandbox() { /** - * We expect to be in an isolated sandbox enviroment + * We expect to be in an isolated sandbox environment * To verify this, we try to query our own background script * It is EXPECTED to reject the request. * If it resolves successfully, we MUST halt the script