Skip to content

Commit

Permalink
stash
Browse files Browse the repository at this point in the history
  • Loading branch information
armaniferrante committed Mar 30, 2023
1 parent c655d7e commit 62a6a97
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const KeyringTypeSelector = ({
<SecondaryButton
label={
action === "recover"
? "Recover using a hardware wallet"
? "Recover with hardware wallet"
: "I have a hardware wallet"
}
onClick={() => onNext("ledger")}
Expand Down
9 changes: 8 additions & 1 deletion packages/app-extension/src/components/common/WalletList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ import {
CreateOrImportMnemonic,
} from "../Unlocked/Settings/AddConnectWallet/CreateMnemonic";
import { ImportMenu } from "../Unlocked/Settings/AddConnectWallet/ImportMenu";
import { ImportMnemonic } from "../Unlocked/Settings/AddConnectWallet/ImportMnemonic";
import {
ImportMnemonic,
ImportMnemonicAutomatic,
} from "../Unlocked/Settings/AddConnectWallet/ImportMnemonic";
import { ImportSecretKey } from "../Unlocked/Settings/AddConnectWallet/ImportSecretKey";
import { RemoveWallet } from "../Unlocked/Settings/YourAccount/EditWallets/RemoveWallet";
import { RenameWallet } from "../Unlocked/Settings/YourAccount/EditWallets/RenameWallet";
Expand Down Expand Up @@ -254,6 +257,10 @@ function WalletNavStack({
name="create-or-import-mnemonic"
component={(props: any) => <CreateOrImportMnemonic {...props} />}
/>
<NavStackScreen
name="set-and-sync-mnemonic"
component={(props: any) => <ImportMnemonicAutomatic {...props} />}
/>
<NavStackScreen
name="import-wallet"
component={(props: any) => <ImportMenu {...props} />}
Expand Down

0 comments on commit 62a6a97

Please sign in to comment.