Skip to content

Commit

Permalink
chore: format with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Feb 25, 2024
1 parent a4d36aa commit 5ac29fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/schedule/ScheduleList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ export default function ScheduleList({ category }: ScheduleListProps) {
),
)
// Filter by search
.filter(
(v) => v.name?.toLocaleLowerCase().includes(search.toLocaleLowerCase()),
.filter((v) =>
v.name?.toLocaleLowerCase().includes(search.toLocaleLowerCase()),
)
// Group by tag
.reduce(
Expand Down

0 comments on commit 5ac29fc

Please sign in to comment.