fix(radio-group): remove wrapper causing Node.removeChild errors

This commit is contained in:
Brandy Smith
2025-08-18 17:08:33 -04:00
parent 9e1cf88acd
commit 0d084fd4bc

View File

@ -293,14 +293,7 @@ export class RadioGroup implements ComponentInterface {
class={mode} class={mode}
> >
{this.renderHintText()} {this.renderHintText()}
{/*
TODO(FW-6279): Wrapping the slot in a div is a workaround due to a
Stencil issue. Without the wrapper, the children radio will fire the
blur event on focus, instead of waiting for them to be blurred.
*/}
<div class="radio-group-wrapper">
<slot></slot> <slot></slot>
</div>
</Host> </Host>
); );
} }