Summary
A user with 140+ handles reports that for-sale listing status and selling price information is progressively disappearing from the handle overview list while they are in the process of listing handles for sale. After listing enough handles, the information is gone across all of them — they can no longer tell which handles are listed vs unlisted.
Problem
The user describes the degradation pattern precisely:
"The information about the selling price and so on started disappearing bit by bit in the list while I was still in the process of listing other handles for sale. So right now, I can't tell which ones I've listed and which ones I haven't. The information is gone on all of them."
This is a regression under high handle count, not a missing feature. The for-sale status was visible initially and eroded progressively as more listings were added.
Likely causes:
- Pagination / data truncation — The handle list may only fetch the first N handles and not paginate beyond that. With 140+ handles, listing status for handles beyond the page limit is never loaded.
- GraphQL query response truncated — The query behind the overview list (
use-identity-market.ts or similar) may cap results, dropping listing data for handles beyond a threshold.
- Optimistic update / cache invalidation bug — Creating new listings may be invalidating or overwriting the cached listing state for existing handles in the list, causing previously visible for-sale status to disappear.
- Render performance / virtualisation issue — At 140+ rows, a virtualised list may be unmounting rows and failing to restore their state correctly on scroll.
The user is accessing via browser (not the OpenHuman desktop app), so this is a web-only repro path.
Steps to reproduce
- Create an account with 100+ handles, most listed for sale.
- Open the handle overview/registry list.
- Begin listing additional handles for sale.
- Observe: for-sale status and price information starts disappearing from previously listed handles in the overview, eventually gone from all.
Expected behaviour
For-sale status and listing price are visible for all handles in the overview list, regardless of total handle count. Adding new listings does not affect the visibility of existing listing data.
Acceptance criteria
Reporter
Discord support ticket — Signal2o (140+ handles, listing progressively disappearing).
Related
Summary
A user with 140+ handles reports that for-sale listing status and selling price information is progressively disappearing from the handle overview list while they are in the process of listing handles for sale. After listing enough handles, the information is gone across all of them — they can no longer tell which handles are listed vs unlisted.
Problem
The user describes the degradation pattern precisely:
This is a regression under high handle count, not a missing feature. The for-sale status was visible initially and eroded progressively as more listings were added.
Likely causes:
use-identity-market.tsor similar) may cap results, dropping listing data for handles beyond a threshold.The user is accessing via browser (not the OpenHuman desktop app), so this is a web-only repro path.
Steps to reproduce
Expected behaviour
For-sale status and listing price are visible for all handles in the overview list, regardless of total handle count. Adding new listings does not affect the visibility of existing listing data.
Acceptance criteria
Reporter
Discord support ticket — Signal2o (140+ handles, listing progressively disappearing).
Related