Skip to content

Commit

Permalink
style: lint with biome
Browse files Browse the repository at this point in the history
  • Loading branch information
skoriop committed Jul 23, 2024
1 parent 6f800cc commit 90f4db7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/announcements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ function Announcements() {
if (unreadAnnouncements && unreadAnnouncements.length > 0) {
toast({
title: "New Announcements",
description: `You have ${unreadAnnouncements.length} unread announcement${unreadAnnouncements.length > 1 ? 's' : ''}.`,
description: `You have ${
unreadAnnouncements.length
} unread announcement${unreadAnnouncements.length > 1 ? "s" : ""}.`,
});
}
}, [announcements, readAnnouncements, toast]);
Expand Down

0 comments on commit 90f4db7

Please sign in to comment.