diff --git a/apps/apollo-vertex/registry/data-table/data-table.tsx b/apps/apollo-vertex/registry/data-table/data-table.tsx index 5e3637609..e2e2a85df 100644 --- a/apps/apollo-vertex/registry/data-table/data-table.tsx +++ b/apps/apollo-vertex/registry/data-table/data-table.tsx @@ -88,6 +88,7 @@ interface DataTableProps { renderExpandedRow?: (row: Row) => React.ReactNode; getRowClassName?: (row: TData) => string; skeletonColumnWidths?: string[]; + plain?: boolean; } function DataTable({ @@ -123,6 +124,7 @@ function DataTable({ renderExpandedRow, getRowClassName, skeletonColumnWidths, + plain = false, }: DataTableProps) { const { t } = useTranslation(); @@ -207,7 +209,7 @@ function DataTable({