From 5705722b58c531d7e76d8751d0d8b3829de92a62 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 18 Apr 2025 14:42:05 +0300 Subject: [PATCH 1/4] Update AutoPairingPostMessageConnection.test.ts Signed-off-by: leopardracer <136604165+leopardracer@users.noreply.github.com> --- .../utils/messaging/AutoPairingPostMessageConnection.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)({ From a8a172f84e1d6a871ddf3647ad9febccc0622677 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 18 Apr 2025 14:48:48 +0300 Subject: [PATCH 2/4] Update LedgerService.ts Signed-off-by: leopardracer <136604165+leopardracer@users.noreply.github.com> --- src/background/services/ledger/LedgerService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From bd8c815cfbfdc2730dfc2b0f05a10de7e57314f9 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 18 Apr 2025 14:49:16 +0300 Subject: [PATCH 3/4] Update ConnectionIndicatorK2.tsx Signed-off-by: leopardracer <136604165+leopardracer@users.noreply.github.com> --- src/components/common/ConnectionIndicatorK2.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) => ( From 055b90fbc72700b5d2ae5718189b4bf9e60f8921 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Fri, 18 Apr 2025 14:49:59 +0300 Subject: [PATCH 4/4] Update KeystoneApprovalOverlay.tsx Signed-off-by: leopardracer <136604165+leopardracer@users.noreply.github.com> --- .../SignTransaction/components/KeystoneApprovalOverlay.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }