Skip to content

Commit

Permalink
Fix for the disappearing of swapped tokens (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zir0h authored Oct 10, 2024
1 parent b5a459a commit f72be70
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions 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,7 +81,6 @@ 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 f72be70

Please sign in to comment.