Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
this took way too long to figure out
  • Loading branch information
regalijan committed Jan 24, 2025
1 parent 992a712 commit d7cbebc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/inactivities.tsx
Expand Up @@ -123,8 +123,8 @@ export default function () {
<ModalCloseButton />
<ModalBody>
<UnorderedList>
<ListItem>Username: ${currentInactivity.user.username}</ListItem>
<ListItem>User ID: ${currentInactivity.user.id}</ListItem>
<ListItem>Username: ${currentInactivity.user?.username}</ListItem>
<ListItem>User ID: ${currentInactivity.user?.id}</ListItem>
<ListItem>Start Date: ${currentInactivity.start}</ListItem>
<ListItem>End Date: ${currentInactivity.end}</ListItem>
<ListItem>
Expand Down

0 comments on commit d7cbebc

Please sign in to comment.