feat: sync codebase with latest radix pattern

This commit is contained in:
2026-07-09 17:07:11 +05:30
parent a376558b2f
commit 87dde1c8d1
42 changed files with 4361 additions and 1493 deletions

View File

@@ -15,7 +15,6 @@ import {
import { Table, TableBody, TableCell, TableRow } from '@/components/ui/table';
import { Skeleton } from '@/components/ui/skeleton';
import { TooltipProvider } from '@/components/ui/tooltip';
import type { PermissionInput } from '@/hooks/usePermissions';
import { PermissionGuard } from '@/guards';
@@ -247,7 +246,7 @@ function DataTableContent<TData, TValue>({
});
return (
<TooltipProvider delayDuration={0}>
<>
<section className="space-y-4 rounded-lg border bg-card p-4">
<TopHeader
title={onAddNew ? title : undefined}
@@ -346,6 +345,6 @@ function DataTableContent<TData, TValue>({
onPageSizeChange={pagination?.onLimitChange}
/>
</section>
</TooltipProvider>
</>
);
}