Skip to content

Commit

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

0 comments on commit cd35c04

Please sign in to comment.