Fixed linter error (errant console.log)

This commit is contained in:
Kevin Ansfield 2021-07-26 17:09:04 +01:00
parent 4e0473a93e
commit 01538d5916

View File

@ -11,7 +11,5 @@ export default helper(function hexAdjuster([hex], {s: sDiff, l: lDiff} = {}) {
const adjRgb = hslToRgb({h, s: adjS, l: adjL});
const adjHex = rgbToHex(adjRgb);
console.log(hex, adjHex);
return adjHex;
});