all: revert log, upd date

This commit is contained in:
Eugene Burkov
2025-05-21 15:40:33 +03:00
parent de5649e235
commit 66240755ca
2 changed files with 1 additions and 4 deletions

View File

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