From d7137551a05b52712d2c4ced46d1ef594896deb4 Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Tue, 16 Dec 2025 10:54:23 -0500 Subject: [PATCH] prettier --- packages/webawesome/src/components/button/button.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/webawesome/src/components/button/button.ts b/packages/webawesome/src/components/button/button.ts index b34a2a06b..146fdb83d 100644 --- a/packages/webawesome/src/components/button/button.ts +++ b/packages/webawesome/src/components/button/button.ts @@ -136,9 +136,9 @@ export default class WaButton extends WebAwesomeFormAssociatedElement { const button = document.createElement('button'); for (const attribute of this.attributes) { - if (attribute.name === "style") { + if (attribute.name === 'style') { // Skip style attributes as they *shouldn't* be necessary - continue + continue; } button.setAttribute(attribute.name, attribute.value); }