diff --git a/packages/demo-wallet/src/App/components/ReceiveFunds.tsx b/packages/demo-wallet/src/App/components/ReceiveFunds.tsx index 7627464..87e6b8f 100644 --- a/packages/demo-wallet/src/App/components/ReceiveFunds.tsx +++ b/packages/demo-wallet/src/App/components/ReceiveFunds.tsx @@ -13,7 +13,7 @@ export function ReceiveFunds() { const updateUnifiedAddress = async () => { if (state.webWallet && state.activeAccount !== undefined) { let address = await state.webWallet.get_current_address( - state.activeAccount || 0, + state.activeAccount, ); setUnifiedAddress(address); }