Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HardhatChad committed Mar 4, 2025
1 parent eb6e0e1 commit b6137c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/topup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn Topup(address: String) -> Element {
let priority_fee = use_signal(|| 0);
let err = use_signal::<Option<TokenInputError>>(|| None);
let tx = use_topup_transaction(destination, amount, sol_balance, err, priority_fee);
let mut status = use_signal(|| TopupStatus::Success);
let mut status = use_signal(|| TopupStatus::Editing);

on_transaction_done(move |_| {
status.set(TopupStatus::Success);
Expand Down

0 comments on commit b6137c2

Please sign in to comment.