From 5ef2f072827fa2cd77a74490845a7eaffdc1044b Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Wed, 18 Jun 2025 00:34:15 -0400 Subject: [PATCH] style: adjust top item list min size to 200px --- client/app/components/TopItemList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/components/TopItemList.tsx b/client/app/components/TopItemList.tsx index 491625e..5b20d39 100644 --- a/client/app/components/TopItemList.tsx +++ b/client/app/components/TopItemList.tsx @@ -14,7 +14,7 @@ interface Props { export default function TopItemList({ data, separators, type, className }: Props) { return ( -
+
{data.items.map((item, index) => { const key = `${type}-${item.id}`; return (