Skip to content

Commit

Permalink
Revert "Fix for the disappearing of swapped tokens (#426)"
Browse files Browse the repository at this point in the history
Otherwise this keeps showing sold tokens :/

This reverts commit f72be70.
  • Loading branch information
Zir0h committed Oct 11, 2024
1 parent f72be70 commit f8187a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/profile/collections.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function Collections() {
if (filter === FILTER_NOT_FOR_SALE) {
return tokens.filter(
({ listing_seller_address, artist_address }) =>
artist_address !== address && listing_seller_address !== address
artist_address !== address // && listing_seller_address !== address
)
}

Expand Down Expand Up @@ -81,6 +81,7 @@ export default function Collections() {
artist_address: { _neq: $address }
metadata_status: { _eq: "processed" }
}
amount: { _gt: "0" }
}
order_by: { last_received_at: desc }
) {
Expand Down

0 comments on commit f8187a4

Please sign in to comment.