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 Mar 31, 2024
1 parent 19307a6 commit 246e3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/members/MemberPositions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const showActions = (rows, user) => {
if (user?.role !== "cc") return false;
if (rows.length > 0) {
const allApprovedRejected = rows.every(
(row) => row.approved || row.rejected
(row) => row.approved || row.rejected,
);
return !allApprovedRejected;
} else return false;
Expand Down

0 comments on commit 246e3e4

Please sign in to comment.