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; } };