From bba8b28e0e57bc8075055c9997ab3a183bbe7263 Mon Sep 17 00:00:00 2001 From: Iris Date: Tue, 13 Aug 2024 11:02:05 +0200 Subject: [PATCH] fix: remove logs --- app/page.tsx | 1 - hooks/isDeployed.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index e6a367e..0138dd3 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -275,7 +275,6 @@ export default function Home() { }, [starknetAccount, network, isConnected, starknetNetwork]); const onWalletConnected = (network: NetworkType) => { - console.log("onWalletConnected", network); setNetwork(network); setOpenConnectModal(false); setIsConnected(true); diff --git a/hooks/isDeployed.tsx b/hooks/isDeployed.tsx index c3565a4..666291a 100644 --- a/hooks/isDeployed.tsx +++ b/hooks/isDeployed.tsx @@ -25,7 +25,6 @@ export default function isStarknetDeployed( provider .getClassHashAt(address) .then((classHash) => { - console.log("Class hash", classHash); setIsDeployed(true); setDeploymentData(undefined); return;