diff --git a/src/background/services/ledger/LedgerService.ts b/src/background/services/ledger/LedgerService.ts index c2c40e2f1..f15cb6665 100644 --- a/src/background/services/ledger/LedgerService.ts +++ b/src/background/services/ledger/LedgerService.ts @@ -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 diff --git a/src/background/utils/messaging/AutoPairingPostMessageConnection.test.ts b/src/background/utils/messaging/AutoPairingPostMessageConnection.test.ts index d20ca4d95..bcff109b5 100644 --- a/src/background/utils/messaging/AutoPairingPostMessageConnection.test.ts +++ b/src/background/utils/messaging/AutoPairingPostMessageConnection.test.ts @@ -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)({ diff --git a/src/components/common/ConnectionIndicatorK2.tsx b/src/components/common/ConnectionIndicatorK2.tsx index 6f37503fb..771224ec5 100644 --- a/src/components/common/ConnectionIndicatorK2.tsx +++ b/src/components/common/ConnectionIndicatorK2.tsx @@ -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) => ( diff --git a/src/pages/SignTransaction/components/KeystoneApprovalOverlay.tsx b/src/pages/SignTransaction/components/KeystoneApprovalOverlay.tsx index 5700522ab..1fdc2919a 100644 --- a/src/pages/SignTransaction/components/KeystoneApprovalOverlay.tsx +++ b/src/pages/SignTransaction/components/KeystoneApprovalOverlay.tsx @@ -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; }