From 61f49f41487d5bf657c55f16613b82be30c57783 Mon Sep 17 00:00:00 2001 From: Sidney Alcantara Date: Thu, 9 Sep 2021 22:27:34 +1000 Subject: [PATCH] CellValidation: remove unncessary Box --- src/components/Table/CellValidation.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/Table/CellValidation.tsx b/src/components/Table/CellValidation.tsx index 5dbe1ec3..ce1fda8e 100644 --- a/src/components/Table/CellValidation.tsx +++ b/src/components/Table/CellValidation.tsx @@ -1,11 +1,10 @@ import { styled } from "@material-ui/core/styles"; -import { Box } from "@material-ui/core"; import ErrorIcon from "@material-ui/icons/ErrorOutline"; import WarningIcon from "@material-ui/icons/WarningAmber"; import RichTooltip from "components/RichTooltip"; -const Root = styled(Box)(({ theme, ...props }) => ({ +const Root = styled("div")(({ theme, ...props }) => ({ width: "100%", height: "100%", padding: "var(--cell-padding)",