From b22911798de386aec61f21b431bb5d3a86e491c9 Mon Sep 17 00:00:00 2001 From: Miles Blackwood Date: Thu, 8 May 2025 15:47:37 -0400 Subject: [PATCH] Don't use fn if no arg needed. --- .../src/autofill/content/components/notification/footer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/browser/src/autofill/content/components/notification/footer.ts b/apps/browser/src/autofill/content/components/notification/footer.ts index 960290e5943..52827ca390b 100644 --- a/apps/browser/src/autofill/content/components/notification/footer.ts +++ b/apps/browser/src/autofill/content/components/notification/footer.ts @@ -38,7 +38,7 @@ export function NotificationFooter({ const primaryButtonText = i18n.saveAction; return html` -
+
${!isChangeNotification ? NotificationButtonRow({ collections, @@ -57,7 +57,7 @@ export function NotificationFooter({ `; } -export const displayFlex = () => css` +export const displayFlex = css` display: flex; `;