Skip to content

Commit

Permalink
fix(comp:radio): remove unnecessory console statement (#1691)
Browse files Browse the repository at this point in the history
  • Loading branch information
sallerli1 authored Sep 18, 2023
1 parent 1caabb8 commit f779ea2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/components/radio/src/RadioGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export default defineComponent({
const checkedCls = `.${common.prefixCls}-radio-checked`
const checkedRadio = element.querySelector(checkedCls) as HTMLDivElement | null
if (checkedRadio) {
console.log(checkedRadio.offsetLeft)
element.style.setProperty('--ix-radio-group-fieldset-arrow-offset', `${checkedRadio.offsetLeft}px`)
}
}
Expand Down

0 comments on commit f779ea2

Please sign in to comment.