Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __tests__/App-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/utils/i18n/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/scanner/decoders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down