diff --git a/src/SEQTA.js b/src/SEQTA.js index 7027adde..74c190eb 100644 --- a/src/SEQTA.js +++ b/src/SEQTA.js @@ -2221,8 +2221,8 @@ function hexToRGB(hex) { b = parseInt(hex.slice(5, 7), 16); return { r: r, g: g, b: b }; - } catch(e) { - console.error(e); + } catch { + // do nothing becuase this functoin is a bit broken right now (feel free to fix it!) } }