From 7b55b38aa410fff195e874fea5e637a18b6d561a Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 3 Aug 2022 10:56:37 -0400 Subject: [PATCH] remove unused property --- src/components/radio/radio.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/radio/radio.ts b/src/components/radio/radio.ts index afa2e418..0a4a898c 100644 --- a/src/components/radio/radio.ts +++ b/src/components/radio/radio.ts @@ -1,5 +1,5 @@ import { html, LitElement } from 'lit'; -import { customElement, property, query, state } from 'lit/decorators.js'; +import { customElement, property, state } from 'lit/decorators.js'; import { classMap } from 'lit/directives/class-map.js'; import { emit } from 'src/internal/event'; import { watch } from '../../internal/watch'; @@ -24,8 +24,6 @@ import type { CSSResultGroup } from 'lit'; export default class SlRadio extends LitElement { static styles: CSSResultGroup = styles; - @query('.radio__input') input: HTMLInputElement; - @state() checked = false; @state() protected hasFocus = false;