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 src/background/services/ledger/LedgerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class LedgerService implements OnLock, OnUnlock {
}

/**
* The issue solved here is that when the extnesion itself requests a signer
* The issue solved here is that when the extension itself requests a signer
* it doesnt care what window is the signer. It cares that the window is still
* active and able to sign. So we simply grab the most recent transport created
* and delegate the signing to that window
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ describe('background/providers/utils/AutoPairingPostMessageConnection', () => {
},
});

// messages are ingnored till conneciton ID is received
// messages are ingnored till connection ID is received
expect(messageListener).not.toHaveBeenCalled();

(addEventListenerSpy.mock.calls[0]?.[1] as any)({
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/ConnectionIndicatorK2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface ConnectionIndicatorProps {
}

/**
* Used for positioning the tooltip content so that the conainer overlaps with the indicator dot.
* Used for positioning the tooltip content so that the container overlaps with the indicator dot.
* This prevents the Conent from disappearing when the mouse is moved over it.
*/
const ContentContainer = (props: StackProps) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export function KeystoneApprovalOverlay({

const handleError = useCallback((error: string) => {
if (!error || error.includes('Dimensions')) {
// The component continously scans and raises an undefined error
// The component continuously scans and raises an undefined error
// when it's not able to find the QR code.
return;
}
Expand Down