From 07ceb6f5fd9604dd890b76806ca141fcf861f713 Mon Sep 17 00:00:00 2001 From: crazywriter1 Date: Wed, 1 Jul 2026 15:07:59 +0300 Subject: [PATCH] fix: remove debug console.log from useNetwork hook --- src/utils/networks.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/networks.ts b/src/utils/networks.ts index 7e514b78..1f931ae7 100644 --- a/src/utils/networks.ts +++ b/src/utils/networks.ts @@ -56,8 +56,6 @@ export function useNetwork(network: NetworkType): UseNetworkResponse { const [isAdded, setIsAdded] = useState(false); const [isSelected, setIsSelected] = useState(false); - console.log(`${network} is added: ${isAdded}`); - // Check if network is added and selected on mount and when network changes useEffect(() => { const checkNetwork = async () => {