Skip to content

Commit

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

0 comments on commit 753d629

Please sign in to comment.