diff --git a/src/App.tsx b/src/App.tsx index 731d082..bc2d428 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -89,7 +89,8 @@ function App() { w0?.getEthersProvider().then(async (provider) => { const balance = await getBalance(provider); if (!isFunded && balance?.lte(100000000000000)) { - const funded = await fundWallet(w0.address); + await fundWallet(w0.address); + /* if (funded) { setIsFunded(true); } else { @@ -98,9 +99,9 @@ function App() { message: "Could not fund wallet", }); } - } else { - setIsFunded(true); + */ } + setIsFunded(true); }); }) }, [w0])