Skip to content

Commit 53c4a84

Browse files
Update docs/base-account/framework-integrations/privy/wallet-actions.mdx
Co-authored-by: Stephan Cilliers <stephan.cilliers@coinbase.com>
1 parent 6e71085 commit 53c4a84

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

docs/base-account/framework-integrations/privy/wallet-actions.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ const WalletActions = () => {
5050
const { signTypedData } = useSignTypedData();
5151
const { wallets } = useWallets();
5252

53-
const [selectedWallet, setSelectedWallet] = useState(null);
53+
const [selectedWallet, setSelectedWallet] = useState<{
54+
address: string;
55+
type: string;
56+
name: string;
57+
} | null>(null);
5458

5559
// Map wallets for selection
5660
const allWallets = useMemo(() => {

0 commit comments

Comments
 (0)