Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 36b28f2

Browse files
Welander1994iOvergaard
authored andcommittedApr 11, 2025··
cleanup removing console.logs
1 parent 8ce42c9 commit 36b28f2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎packages/uui-color-area/lib/uui-color-area.element.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export class UUIColorAreaElement extends LitElement {
211211
l: this.lightness,
212212
a: this.alpha / 100,
213213
});
214-
console.log(this.saturation);
214+
215215
this._value = color.toRgbString();
216216
this.dispatchEvent(new UUIColorAreaEvent(UUIColorAreaEvent.CHANGE));
217217
}
@@ -227,12 +227,10 @@ export class UUIColorAreaElement extends LitElement {
227227
`hsla(${hue}, ${saturation}%, ${lightness}%, ${alpha / 100})`,
228228
);
229229

230-
console.log(`hsla(${hue}, ${saturation}%, ${lightness}%, ${alpha / 100})`);
231-
232230
if (!color.isValid()) {
233231
return '';
234232
}
235-
console.log(color.toHex());
233+
236234
return color.toHex();
237235
}
238236

0 commit comments

Comments
 (0)
Please sign in to comment.