Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BeroBurny committed Jul 24, 2024
1 parent 4c0a08f commit 4fa9c83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/lib/components/UpdateNameModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
async function onNameSubmit() {
fetching = true;
const address = (
await $selectedProvider.provider.request({ method: 'eth_requestAccounts', params: [] })
await $selectedProvider.provider.request({ method: 'eth_requestAccounts', params: [] })
)[0];
const amount = Number(toWei(donation, 6));
Expand All @@ -50,7 +50,7 @@
callData: data,
contractAddress: SPRINTER_SEPOLIA_ADDRESS,
gasLimit: 10_000_000
},
}
});
fetching = false;
Expand Down

0 comments on commit 4fa9c83

Please sign in to comment.