Skip to content

Commit

Permalink
correct fee cap input update
Browse files Browse the repository at this point in the history
  • Loading branch information
miralandlabs committed Aug 10, 2024
1 parent cfddd0c commit d536d65
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ pub fn Settings() -> Element {
oninput: move |e| {
if let Ok(v) = e.value().parse::<u64>() {
priority_fee_cap_input.set(v);
priority_fee_cap.set(PriorityFeeCap(v));
}
}
}
Expand Down

0 comments on commit d536d65

Please sign in to comment.