remove id from the card on members list

This commit is contained in:
Adrian Dmitra 2023-07-30 17:00:47 -06:00
parent 123f35563b
commit 910f9e7db4

View File

@ -243,7 +243,7 @@ export function Members(props) {
<>
<Item.Description>
Shelf: {x.member.storage.length ?
x.member.storage.sort((a, b) => a.location == 'member_shelves' ? -1 : 1).map((x, i) =>
x.member.storage.sort((a, b) => a.location === 'member_shelves' ? -1 : 1).map((x, i) =>
<StorageButton storage={x} />
)
:
@ -253,7 +253,6 @@ export function Members(props) {
<Item.Description>Joined: {x.member.application_date || 'Unknown'}</Item.Description>
</>
}
<Item.Description>ID: {x.member.id}</Item.Description>
</Item.Content>
</Item>
)