Skip to content

Commit 3ed8f18

Browse files
committed
chore: code cleanup
1 parent 561fefb commit 3ed8f18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elements/pf-radio/pf-radio.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export class PfRadio extends LitElement {
144144
if (parentNode === this.parentNode) {
145145
radioGroup.forEach((radioSet, groupName) => {
146146
if (this.parentNode && groupName === this.name) {
147-
[...radioSet].forEach(radio => {
147+
[...radioSet].forEach((radio: PfRadio) => {
148148
radio.checked = false;
149149
});
150150
this.checked = true;

0 commit comments

Comments
 (0)