This commit is contained in:
Mohan 2025-10-28 00:33:47 +01:00 committed by GitHub
parent 6db365bf23
commit c3f3623b6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 375 additions and 221 deletions

View file

@ -9,7 +9,7 @@ import WithdrawDialog from "../../modal/wallet/WithdrawDialog";
import WalletRefreshButton from "./WalletRefreshButton";
export default function WithdrawWidget() {
const walletBalance = useAppSelector((state) => state.rpc.state.balance);
const walletBalance = useAppSelector((state) => state.bitcoinWallet.balance);
const [showDialog, setShowDialog] = useState(false);
function onShowDialog() {