Skip to content

Commit 58ce62e

Browse files
committed
cleanup
1 parent a7a67fc commit 58ce62e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ProductList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const ProductList = ({ actionLabel, content, category }: ProductListProps) => {
3232
>
3333
{category}
3434
</h3>
35-
<List aria-labelledby={CATEGORY_NAME} className="m-0 flex-col">
35+
<List aria-labelledby={CATEGORY_NAME} className="m-0">
3636
{content.map(({ title, description, link, image, alt, id }, idx) => (
3737
<ListItem key={id || idx} color="text" className="mb-0 mt-8 flex">
3838
<div className="w-20">
@@ -45,7 +45,7 @@ const ProductList = ({ actionLabel, content, category }: ProductListProps) => {
4545
/>
4646
)}
4747
</div>
48-
<Flex className="ms-4 w-full flex-col justify-between border-b border-border pb-4 sm:ms-6 sm:flex-row">
48+
<Flex className="ms-4 w-full flex-col justify-between border-b pb-4 sm:ms-6 sm:flex-row">
4949
<div className="flex-1">
5050
<div>{title}</div>
5151
<div className="mb-0 text-sm opacity-60">{description}</div>

0 commit comments

Comments
 (0)