Skip to content
Merged
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 src/background/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/modules/crypto/aes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
2 changes: 1 addition & 1 deletion src/ui/DNA/pages/UpgradeDnaFlow/SelectDna.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export function SelectDna() {
textAlign: 'center',
}}
>
Backend is unavaliable
Backend is unavailable
<br />
Please, try again later
</UIText>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/hardware-wallet/shared/verifySandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down