Skip to content

Commit a94454d

Browse files
author
Rajat Saxena
committed
Lint fixes
1 parent 150c633 commit a94454d

File tree

1 file changed

+1
-4
lines changed
  • apps/web/app/(with-contexts)/dashboard/(sidebar)/my-content

1 file changed

+1
-4
lines changed

apps/web/app/(with-contexts)/dashboard/(sidebar)/my-content/page.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ function ContentGrid({
2121
return (
2222
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
2323
{items.map((item) => (
24-
<MyContentCard
25-
key={item.entity.id}
26-
item={item}
27-
/>
24+
<MyContentCard key={item.entity.id} item={item} />
2825
))}
2926
</div>
3027
);

0 commit comments

Comments
 (0)