Skip to content

Commit cb4d007

Browse files
committed
fix(textfield): fixed styles array
1 parent ed3418c commit cb4d007

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/textfield/src/Textfield.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ export class TextfieldBase extends FieldLabelMixin(
5252
})
5353
)
5454
) {
55-
5655
public static override get styles(): CSSResultArray {
57-
return [...(super.styles || []), textfieldStyles, checkmarkStyles];
56+
return [super.styles || [], textfieldStyles, checkmarkStyles];
5857
}
5958

6059
@state()

0 commit comments

Comments
 (0)