From 73902f6decad59b3c583d9daee9bf0f6d1ee2531 Mon Sep 17 00:00:00 2001 From: abefernan <44572727+abefernan@users.noreply.github.com> Date: Thu, 8 Feb 2024 11:52:37 +0100 Subject: [PATCH] Remove console log --- context/ChainsContext/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/context/ChainsContext/index.tsx b/context/ChainsContext/index.tsx index 5233027..38fc67e 100644 --- a/context/ChainsContext/index.tsx +++ b/context/ChainsContext/index.tsx @@ -97,7 +97,6 @@ export const ChainsProvider = ({ children }: ChainsProviderProps) => { if (state.validatorState.status === "loading" && state.chain.nodeAddress) { try { const validators = await getAllValidators(state.chain.nodeAddress); - console.log({ validators }); dispatch({ type: "setValidatorState", payload: { validators, status: "done" } }); } catch (e) { console.error(e instanceof Error ? e.message : "Failed to load validators");