From 90d03bf72e5f766d410a1e8c7ad93d5f21948ab2 Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Mon, 3 Nov 2025 15:45:20 -0800 Subject: [PATCH] fix(radio-group): remove unused code --- core/src/components/radio-group/radio-group.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/radio-group/radio-group.tsx b/core/src/components/radio-group/radio-group.tsx index 62f63b006c..26c187453a 100644 --- a/core/src/components/radio-group/radio-group.tsx +++ b/core/src/components/radio-group/radio-group.tsx @@ -1,7 +1,7 @@ import type { ComponentInterface, EventEmitter } from '@stencil/core'; import { Build, Component, Element, Event, Host, Listen, Method, Prop, State, Watch, h } from '@stencil/core'; import { checkInvalidState } from '@utils/forms'; -import { inheritAriaAttributes, renderHiddenInput } from '@utils/helpers'; +import { renderHiddenInput } from '@utils/helpers'; import { getIonMode } from '../../global/ionic-global';