Skip to content

Commit

Permalink
remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
scottweiss committed Nov 29, 2024
1 parent aba5b6b commit b344a6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export class CsdRadioButtonGroup extends HTMLElement {
// radio.value = option;
// radio.checked = this.waveType === labelText;

radio.addEventListener("click", (event) => {
console.log(event);
radio.addEventListener("click", () => {

this.value = option.id;
this.dispatchEvent(
new CustomEvent("CsdRadioButtonGroupValueChange", {
Expand Down
1 change: 0 additions & 1 deletion src/components/csd-range/csd-range.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ export class CsdRange extends HTMLElement {
canvasWidth / 2 + radius * 1.5 * Math.cos(newAngle),
canvasHeight / 2 - radius * 1.5 * Math.sin(newAngle),
);
console.log(i);
const longLines = [315, 235, 135, -45, 35];
let lineWidth = radius * 1.9;
if (longLines.includes(i)) {
Expand Down

0 comments on commit b344a6a

Please sign in to comment.