File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/clerk-js/src/ui/components/UserProfile Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { useReverification , useUser } from '@clerk/shared/react' ;
22import type { Web3Provider , Web3Strategy } from '@clerk/shared/types' ;
33
4- import { Web3SelectWalletScreen } from '@/ui/components/UserProfile/Web3SelectWalletScreen ' ;
4+ import { Web3SelectSolanaWalletScreen } from '@/ui/components/UserProfile/Web3SelectSolanaWalletScreen ' ;
55import { Action } from '@/ui/elements/Action' ;
66import { useActionContext } from '@/ui/elements/Action/ActionRoot' ;
77import { useCardState } from '@/ui/elements/contexts' ;
@@ -107,7 +107,7 @@ export const AddWeb3WalletActionMenu = () => {
107107 </ Action . Closed >
108108 < Action . Open value = 'web3Wallets' >
109109 < Action . Card >
110- < Web3SelectWalletScreen onConnect = { connect } />
110+ < Web3SelectSolanaWalletScreen onConnect = { connect } />
111111 </ Action . Card >
112112 </ Action . Open >
113113
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export type Web3SelectWalletProps = {
1919 onConnect : ( params : { strategy : Web3Strategy ; walletName : string } ) => Promise < void > ;
2020} ;
2121
22- export const Web3SelectWalletScreen = ( { onConnect } : Web3SelectWalletProps ) => {
22+ export const Web3SelectSolanaWalletScreen = ( { onConnect } : Web3SelectWalletProps ) => {
2323 const card = useCardState ( ) ;
2424 const { close } = useActionContext ( ) ;
2525
You can’t perform that action at this time.
0 commit comments