fix overflow
All checks were successful
/ test_checkout (push) Successful in 2m9s

This commit is contained in:
Jean-Marie Mineau 2024-03-13 18:12:50 +01:00
parent 9238091577
commit 17ac2d427b
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2

View file

@ -2,7 +2,7 @@ use yew::prelude::*;
#[function_component] #[function_component]
fn App() -> Html { fn App() -> Html {
let counter = use_state(|| 283870); let counter = use_state(|| 283870u64);
let onclick = { let onclick = {
let counter = counter.clone(); let counter = counter.clone();
move |_| { move |_| {