From 724f5a1288938193bfaa1ded02d26456630fe19e Mon Sep 17 00:00:00 2001 From: tomjeatt <40243778+tomjeatt@users.noreply.github.com> Date: Fri, 29 Sep 2023 09:43:17 +0100 Subject: [PATCH] chore: remove console log (#1575) --- src/hooks/api/use-get-prices.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/api/use-get-prices.tsx b/src/hooks/api/use-get-prices.tsx index a9ba628c6..2c0bd250f 100644 --- a/src/hooks/api/use-get-prices.tsx +++ b/src/hooks/api/use-get-prices.tsx @@ -32,7 +32,7 @@ const getCoingeckoId = (currency: CurrencyExt) => { const composeIds = (currencies: CurrencyExt[]): string => currencies.reduce((acc, currency) => { const coingeckoId = getCoingeckoId(currency); - console.log('coingeckoId', coingeckoId); + if (!coingeckoId) { return acc; }