diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 5378a3e..26020cc 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -61,9 +61,7 @@ init(); } - async function mint(evt) { - evt.preventDefault(); - + async function mint() { await contractWithSigner.mintToken(quantity, account); loading = true; contractWithSigner.on("Minted", (from, to, amount, event) => { @@ -160,7 +158,7 @@ {/if} -