diff --git a/platform/ui/src/components/TableCell/TableCell.jsx b/platform/ui/src/components/TableCell/TableCell.jsx index 9be82a5e5..e3c1a89b6 100644 --- a/platform/ui/src/components/TableCell/TableCell.jsx +++ b/platform/ui/src/components/TableCell/TableCell.jsx @@ -5,8 +5,11 @@ import classnames from 'classnames'; const TableCell = ({ children, className, + colSpan, + // ignored because we don't wan't to expose this prop + // eslint-disable-next-line react/prop-types + cellsNum, isTableHead, - size, align, style, }) => { @@ -17,10 +20,6 @@ const TableCell = ({ right: 'text-right', justify: 'text-justify', }, - size: { - small: 'flex-0.3', - normal: 'flex-1', - }, isTableHead: { true: '', false: 'border-r border-custom-violetPale', @@ -31,7 +30,7 @@ const TableCell = ({