Skip to content

Commit 0d084fd

Browse files
committed
fix(radio-group): remove wrapper causing Node.removeChild errors
1 parent 9e1cf88 commit 0d084fd

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

core/src/components/radio-group/radio-group.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -293,14 +293,7 @@ export class RadioGroup implements ComponentInterface {
293293
class={mode}
294294
>
295295
{this.renderHintText()}
296-
{/*
297-
TODO(FW-6279): Wrapping the slot in a div is a workaround due to a
298-
Stencil issue. Without the wrapper, the children radio will fire the
299-
blur event on focus, instead of waiting for them to be blurred.
300-
*/}
301-
<div class="radio-group-wrapper">
302-
<slot></slot>
303-
</div>
296+
<slot></slot>
304297
</Host>
305298
);
306299
}

0 commit comments

Comments
 (0)