From cf072c03b269d9df93ec014905b50d41a78a83bd Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Sun, 7 Dec 2025 16:54:49 -0500 Subject: [PATCH] fix(ui): suppress react compiler warning in profiles-table --- ui/src/components/profiles-table.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/components/profiles-table.tsx b/ui/src/components/profiles-table.tsx index 5d201022..b69b702a 100644 --- a/ui/src/components/profiles-table.tsx +++ b/ui/src/components/profiles-table.tsx @@ -79,6 +79,7 @@ export function ProfilesTable({ data, onEdit }: ProfilesTableProps) { }, ]; + // eslint-disable-next-line react-hooks/incompatible-library const table = useReactTable({ data, columns,