Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
welp
  • Loading branch information
regalijan committed Jan 25, 2025
1 parent 753d629 commit 4d13a5e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/routes/inactivities.tsx
@@ -1,7 +1,7 @@
import {
Button,
Container,
Heading,
Link,
ListItem,
Modal,
ModalBody,
Expand Down Expand Up @@ -177,9 +177,11 @@ export default function () {
<Td>{row.user.id}</Td>
<Td>{row.start}</Td>
<Td>{row.end}</Td>
<Link onClick={async () => await getInactivity(row.id)}>
View More
</Link>
<Td>
<Button onClick={async () => await getInactivity(row.id)}>
View More
</Button>
</Td>
</Tr>
))}
</Tbody>
Expand Down

0 comments on commit 4d13a5e

Please sign in to comment.