Skip to content

Commit 916c565

Browse files
committed
refactor: remove unnecessary import
1 parent 55178fb commit 916c565

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

web/src/components/ItemCard/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import StatusBanner, { mapFromSubgraphStatus } from "../RegistryCard/StatusBanne
66
import ArrowIcon from "svgs/icons/arrow.svg";
77
import { ItemDetailsFragment } from "src/graphql/graphql";
88
import ItemField from "./ItemField";
9-
import { cn } from "src/utils";
109
import clsx from "clsx";
1110

1211
const landscapeGridColsCalc = "lg:grid-cols-[1fr_var(--spacing-fluid-150-180-900)_max-content]";
@@ -26,7 +25,7 @@ const ItemCard: React.FC<IItemCard> = ({ id, status, disputed, props }) => {
2625
onClick={() => navigateAndScrollTop(`/lists/item/${id?.toString()}`)}
2726
>
2827
<div
29-
className={cn(
28+
className={clsx(
3029
"grid grid-rows-[repeat(3,min-content)] grid-cols-[1fr_min-content]",
3130
"w-full h-max p-4 gap-y-2 items-center",
3231
"lg:h-16 lg:justify-between lg:grid-rows-[1fr] lg:py-0 lg:px-8",

0 commit comments

Comments
 (0)