1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 10:23:52 +00:00

Don't use fn if no arg needed.

This commit is contained in:
Miles Blackwood
2025-05-08 15:47:37 -04:00
parent 56a7aa6d27
commit b22911798d

View File

@@ -38,7 +38,7 @@ export function NotificationFooter({
const primaryButtonText = i18n.saveAction;
return html`
<div class=${[displayFlex(), notificationFooterStyles({ theme })]}>
<div class=${[displayFlex, notificationFooterStyles({ theme })]}>
${!isChangeNotification
? NotificationButtonRow({
collections,
@@ -57,7 +57,7 @@ export function NotificationFooter({
`;
}
export const displayFlex = () => css`
export const displayFlex = css`
display: flex;
`;