From dbfdb587b68afc08e4e84414e93328c4eb00436a Mon Sep 17 00:00:00 2001 From: Isaac Wise Date: Thu, 22 Feb 2024 02:27:14 -0600 Subject: [PATCH] fix reordering --- components/CollectionListing.tsx | 44 +++++++++++++++++--------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/components/CollectionListing.tsx b/components/CollectionListing.tsx index 5bf81a8d..53abfccb 100644 --- a/components/CollectionListing.tsx +++ b/components/CollectionListing.tsx @@ -186,29 +186,31 @@ const CollectionItem = ({ )} ) : ( - -
- -

{collection.name}

- - {collection.isPublic ? ( +
+ +
- ) : undefined} -
- {collection._count?.links} +

{collection.name}

+ + {collection.isPublic ? ( + + ) : undefined} +
+ {collection._count?.links} +
-
- + +
); };