Skip to content

Commit

Permalink
Apply Prettier Formatting Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavberi authored and github-actions[bot] committed Nov 9, 2024
1 parent 8917a35 commit e29c441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/changelog/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const filterRoles = (roles, filterWords) => {
const { name, endYear } = role;
const lowercaseName = name.toLowerCase();
return filterWords.some(
(word) => lowercaseName.includes(word) && endYear === null
(word) => lowercaseName.includes(word) && endYear === null,
);
});
if (filteredRoles?.length > 0)
Expand Down

0 comments on commit e29c441

Please sign in to comment.