diff --git a/__tests__/App-test.tsx b/__tests__/App-test.tsx index f5417db72..ace6b1a65 100644 --- a/__tests__/App-test.tsx +++ b/__tests__/App-test.tsx @@ -5,7 +5,7 @@ import 'react-native'; import React from 'react'; -// Note: import explicitly to use the types shiped with jest. +// Note: import explicitly to use the types shipped with jest. import { it } from '@jest/globals'; // Note: test renderer must be required after react-native. diff --git a/src/utils/i18n/en_US.json b/src/utils/i18n/en_US.json index 68c3180a1..46d541494 100644 --- a/src/utils/i18n/en_US.json +++ b/src/utils/i18n/en_US.json @@ -743,7 +743,7 @@ "connectPolkadotVault": "Connect Polkadot Vault", "connectKeystoneDevice": "Connect Keystone device", "attachReadOnlyAcc": "Attach watch-only account", - "removeThisAcc": "Detele this account?", + "removeThisAcc": "Delete this account?", "verifySeedPhrase": "Verify seed phrase", "createAPassword": "Create a password", "customizeAssetDisplay": "Customize asset display", diff --git a/src/utils/scanner/decoders.ts b/src/utils/scanner/decoders.ts index 43578eaaf..fb292c245 100644 --- a/src/utils/scanner/decoders.ts +++ b/src/utils/scanner/decoders.ts @@ -234,7 +234,7 @@ export const constructDataFromBytes = ( } default: - throw new Error('Payload is not formated correctly: ' + bytes.toString()); + throw new Error('Payload is not formatted correctly: ' + bytes.toString()); } } catch (e: unknown) { if (e instanceof Error) {