remove hover

This commit is contained in:
2025-12-12 21:08:00 -03:00
parent 935d43d8fa
commit 72f049babd
2 changed files with 4 additions and 6 deletions

View File

@@ -61,8 +61,6 @@ export async function loader({ context, request, params }: Route.LoaderArgs) {
export default function Route({
loaderData: { subscription, billing, startDate, endDate }
}: Route.ComponentProps) {
const sk = `START#${formatDate(startDate)}#END#${formatDate(endDate)}`
return (
<>
<Suspense fallback={<Skeleton />}>
@@ -106,7 +104,7 @@ export default function Route({
<Table className="table-auto w-full">
<TableHeader>
<TableRow>
<TableRow className="hover:bg-transparent">
<TableHead>Colaborador</TableHead>
<TableHead>Curso</TableHead>
<TableHead>Matriculado por</TableHead>
@@ -151,7 +149,7 @@ export default function Route({
)}
{items.length === 0 && (
<TableRow>
<TableRow className="hover:bg-transparent">
<TableCell colSpan={5} className="h-24 text-center">
Nenhum resultado.
</TableCell>
@@ -159,7 +157,7 @@ export default function Route({
)}
</TableBody>
<TableFooter>
<TableRow>
<TableRow className="hover:bg-transparent">
<TableCell colSpan={4} className="text-right">
Total
</TableCell>

View File

@@ -310,7 +310,7 @@ export function DataTable<TData, TValue>({
)
})
) : (
<TableRow>
<TableRow className="hover:bg-transparent">
<TableCell
colSpan={columns.length}
className="h-24 text-center"