Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Display completed on completed events
  • Loading branch information
regalijan committed Apr 1, 2024
1 parent c968384 commit f4b3e81
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/routes/events-team.tsx
Expand Up @@ -463,7 +463,9 @@ export default function () {
{event.pending
? "Pending"
: event.approved
? "Approved"
? event.performed_at
? "Completed"
: "Approved"
: "Denied"}
</Text>
<span
Expand Down

0 comments on commit f4b3e81

Please sign in to comment.