remove console logs

This commit is contained in:
Gustavo Mauricio 2022-09-15 22:47:23 +01:00
parent cc1b2c452c
commit a343ccc652
2 changed files with 0 additions and 4 deletions

View File

@ -16,8 +16,6 @@ const ProgressBar = ({ value }: Props) => {
}, 3000);
}, [value]);
console.log(newValue);
const percentageNewValue = `${(newValue * 100).toFixed(0)}%`;
return (

View File

@ -27,8 +27,6 @@ function MyApp({ Component, pageProps }: AppProps) {
actions.setMetamaskInstalledStatus(await isMetamaskInstalled());
};
console.log("HERE");
verifyMetamask();
}, [actions]);