Skip to content

Commit f54f58a

Browse files
committed
fixed imports
1 parent 460435a commit f54f58a

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

packages/core-mobile/app/new/features/ledger/contexts/LedgerSetupContext.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import React, {
66
useMemo,
77
ReactNode
88
} from 'react'
9-
import { LedgerDerivationPathType } from 'services/ledger/types'
109
import {
11-
WalletCreationOptions,
12-
useLedgerWallet
13-
} from '../hooks/useLedgerWallet'
10+
LedgerDerivationPathType,
11+
WalletCreationOptions
12+
} from 'services/ledger/types'
13+
import { useLedgerWallet } from '../hooks/useLedgerWallet'
1414

1515
interface LedgerSetupState {
1616
selectedDerivationPath: LedgerDerivationPathType | null

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ import {
2727
LedgerKeys
2828
} from 'services/ledger/types'
2929

30-
// Re-export types for consumers
31-
export type { WalletCreationOptions, SetupProgress, LedgerDevice, LedgerKeys }
32-
3330
export interface UseLedgerWalletReturn {
3431
// Connection state
3532
devices: LedgerDevice[]

0 commit comments

Comments
 (0)