Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Another oopsie
  • Loading branch information
regalijan committed Jan 24, 2025
1 parent 24b5fc0 commit bce2b33
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/routes/inactivities.tsx
Expand Up @@ -13,12 +13,12 @@ import {
TableCaption,
TableContainer,
Tbody,
Td,
Td, Th,
Thead,
Tr,
UnorderedList,
useDisclosure,
useToast,
useToast
} from "@chakra-ui/react";
import { useLoaderData } from "@remix-run/react";
import { useState } from "react";
Expand Down Expand Up @@ -161,11 +161,11 @@ export default function () {
All recent inactivity notices (current and last 30 days)
</TableCaption>
<Thead>
<Tr>Name</Tr>
<Tr>User ID</Tr>
<Tr>Start Date</Tr>
<Tr>End Date</Tr>
<Tr>View More</Tr>
<Th>Name</Th>
<Th>User ID</Th>
<Th>Start Date</Th>
<Th>End Date</Th>
<Th>View More</Th>
</Thead>
<Tbody>
{data.map((row) => (
Expand Down

0 comments on commit bce2b33

Please sign in to comment.