more modals replaced

This commit is contained in:
daniel31x13
2023-12-01 14:00:52 -05:00
parent 2c9541734a
commit a3c6d9b42e
13 changed files with 266 additions and 100 deletions
+1 -4
View File
@@ -112,10 +112,7 @@ export default function Index() {
onClick={() => setEditCollectionSharingModal(true)}
>
{collectionOwner.id ? (
<ProfilePhoto
src={collectionOwner.image || undefined}
className="w-7 h-7"
/>
<ProfilePhoto src={collectionOwner.image || undefined} />
) : undefined}
{activeCollection.members
.sort((a, b) => (a.userId as number) - (b.userId as number))