From a343ccc652becfc81c99bb57dcc52725cba38a9d Mon Sep 17 00:00:00 2001 From: Gustavo Mauricio Date: Thu, 15 Sep 2022 22:47:23 +0100 Subject: [PATCH] remove console logs --- components/ProgressBar.tsx | 2 -- pages/_app.tsx | 2 -- 2 files changed, 4 deletions(-) diff --git a/components/ProgressBar.tsx b/components/ProgressBar.tsx index fdc78eaa..93558206 100644 --- a/components/ProgressBar.tsx +++ b/components/ProgressBar.tsx @@ -16,8 +16,6 @@ const ProgressBar = ({ value }: Props) => { }, 3000); }, [value]); - console.log(newValue); - const percentageNewValue = `${(newValue * 100).toFixed(0)}%`; return ( diff --git a/pages/_app.tsx b/pages/_app.tsx index 500524d6..79fe0120 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -27,8 +27,6 @@ function MyApp({ Component, pageProps }: AppProps) { actions.setMetamaskInstalledStatus(await isMetamaskInstalled()); }; - console.log("HERE"); - verifyMetamask(); }, [actions]);