Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
razorfever committed Oct 23, 2024
1 parent dd3e7ca commit e7ed874
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/csc-ui/src/components/c-select/c-select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,6 @@ export class CSelect {
this._selectionElement?.replaceChildren();
}

console.log('VALUE VAIHTUS', v);

this._selectOption(this.returnObject ? v : { name: v, value: v });
}

Expand All @@ -338,7 +336,6 @@ export class CSelect {
}

private _selectOption({ value, name }: { value: string; name: string }) {
console.log('selecteerataan', value, name);
this._dropdownElement.close();

const selection = this._setCurrentIndex({ name, value });
Expand Down

0 comments on commit e7ed874

Please sign in to comment.