diff --git a/src/collections/components/CollectionProducts/EmptyImage.tsx b/src/collections/components/CollectionProducts/EmptyImage.tsx index 9730e8147a..a478945634 100644 --- a/src/collections/components/CollectionProducts/EmptyImage.tsx +++ b/src/collections/components/CollectionProducts/EmptyImage.tsx @@ -4,6 +4,7 @@ import React from "react"; export const EmptyImage = () => { const { theme } = useTheme(); + // Using these colors to match other grid-based lists const bgColor = theme === "defaultLight" ? "hsla(210, 15%, 87%, 1)" : "hsla(210, 32%, 25%, 1)"; return ; diff --git a/src/collections/components/CollectionProducts/ProductTableItem.tsx b/src/collections/components/CollectionProducts/ProductTableItem.tsx index 9681be1521..d7fb337fb5 100644 --- a/src/collections/components/CollectionProducts/ProductTableItem.tsx +++ b/src/collections/components/CollectionProducts/ProductTableItem.tsx @@ -4,15 +4,7 @@ import Drag from "@dashboard/icons/Drag"; import { productUrl } from "@dashboard/products/urls"; import { useSortable } from "@dnd-kit/sortable"; import { CSS } from "@dnd-kit/utilities"; -import { - Box, - Button, - Checkbox, - Skeleton, - Text, - TrashBinIcon, - useTheme, -} from "@saleor/macaw-ui-next"; +import { Box, Button, Checkbox, Skeleton, Text, TrashBinIcon } from "@saleor/macaw-ui-next"; import React from "react"; import { EmptyImage } from "./EmptyImage";