From 4de513ee8a8a5e88ea8df5f95f8e8f1ac7cfb1d0 Mon Sep 17 00:00:00 2001 From: samsamtrum Date: Mon, 25 May 2026 22:06:01 +0700 Subject: [PATCH] fix: use selected wallet in Solana sign example --- .../src/components/sections/wallet-actions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/privy-next-solana/src/components/sections/wallet-actions.tsx b/examples/privy-next-solana/src/components/sections/wallet-actions.tsx index 5efe620a..a29ead16 100644 --- a/examples/privy-next-solana/src/components/sections/wallet-actions.tsx +++ b/examples/privy-next-solana/src/components/sections/wallet-actions.tsx @@ -170,7 +170,7 @@ const WalletActions = () => { const solTransferInstruction = getTransferSolInstruction({ amount: 1000000, - destination: address("Enter_Destination_Address_Here"), + destination: address(selectedWallet.address), source: createNoopSigner(address(selectedWallet.address)), });