Skip to content

Commit b4a049f

Browse files
fix typos
1 parent fa8f9eb commit b4a049f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.claude/settings.local.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"Bash(yarn core lint:*)",
1010
"Bash(ls:*)",
1111
"Bash(find:*)",
12-
"Bash(./node_modules/.bin/tsc:*)"
12+
"Bash(./node_modules/.bin/tsc:*)",
13+
"Bash(git log:*)"
1314
]
1415
}
1516
}

packages/core-mobile/app/new/features/ledger/hooks/useLedgerWallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export function useLedgerWallet(): UseLedgerWalletReturn {
267267
)
268268
}
269269

270-
// Update the Ledger wallet exntended public keys for new account
270+
// Update the Ledger wallet extended public keys for new account
271271
await dispatch(
272272
storeWallet({
273273
walletId,

packages/core-mobile/app/new/features/ledger/utils/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ export const LedgerWalletSecretSchema = z.object({
5858
})
5959

6060
export const getOppositeKeys = async ({
61-
acountIndex = 0,
61+
accountIndex = 0,
6262
isDeveloperMode
6363
}: {
64-
acountIndex?: number
64+
accountIndex?: number
6565
isDeveloperMode: boolean
6666
}): Promise<{
6767
addressBTC: string
@@ -71,11 +71,11 @@ export const getOppositeKeys = async ({
7171
}> => {
7272
try {
7373
const avalancheKeys = await LedgerService.getAvalancheKeys(
74-
acountIndex,
74+
accountIndex,
7575
!isDeveloperMode
7676
)
7777
const { bitcoinAddress } = await LedgerService.getBitcoinAndXPAddresses(
78-
acountIndex,
78+
accountIndex,
7979
!isDeveloperMode
8080
)
8181

0 commit comments

Comments
 (0)