From 9637abcaa11886eec11c6b0b64aafce0452dfd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 25 Mar 2025 18:25:35 -0400 Subject: [PATCH] refactor: remove spammy error log --- public/src/utils.common.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/public/src/utils.common.js b/public/src/utils.common.js index 13b96fb53c..2e916e7768 100644 --- a/public/src/utils.common.js +++ b/public/src/utils.common.js @@ -631,9 +631,8 @@ const utils = { try { str = JSON.parse(str); - } catch (err) { - console.error(err) - } + // eslint-disable-next-line no-unused-vars + } catch (err) { /* empty */ } return str; },