From 66240755cae5d4d2e2827dd63c1996a2576e0192 Mon Sep 17 00:00:00 2001 From: Eugene Burkov Date: Wed, 21 May 2025 15:40:33 +0300 Subject: [PATCH] all: revert log, upd date --- CHANGELOG.md | 2 +- client/src/helpers/helpers.tsx | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c6e0a2a..9b1b830a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,7 +21,7 @@ NOTE: Add new changes BELOW THIS COMMENT. NOTE: Add new changes ABOVE THIS COMMENT. --> -## [v0.107.62] - 2025-05-15 +## [v0.107.62] - 2025-05-21 See also the [v0.107.62 GitHub milestone][ms-v0.107.62]. diff --git a/client/src/helpers/helpers.tsx b/client/src/helpers/helpers.tsx index d4000c9d..3ae453b9 100644 --- a/client/src/helpers/helpers.tsx +++ b/client/src/helpers/helpers.tsx @@ -548,8 +548,6 @@ const isIpMatchCidr = (parsedIp: any, parsedCidr: any) => { return ipVersion === cidrIpVersion && parsedIp.match(parsedCidr); } catch (e) { - // TODO(a.garipov): Remove or fix. - console.error(e); return false; } }; @@ -610,7 +608,6 @@ export const findAddressType = (address: any) => { return ADDRESS_TYPES.UNKNOWN; } catch (e) { - console.error(e); return ADDRESS_TYPES.UNKNOWN; } };