diff --git a/app/components/itemList.tsx b/app/components/itemList.tsx index 14a8568..11aa187 100644 --- a/app/components/itemList.tsx +++ b/app/components/itemList.tsx @@ -9,14 +9,22 @@ export default function ItemList({ isFetching, blacklistItems, showDialog }: { i ) } else { - return ( -
-
- {blacklistItems.map((item) => { - return - })} + if (blacklistItems.length > 0){ + return ( +
+
+ {blacklistItems.map((item) => { + return + })} +
-
- ) + ) + } else { + return ( +
+

List is empty

+
+ ) + } } } \ No newline at end of file