diff --git a/frontend/src/app/terminal/market/page.tsx b/frontend/src/app/terminal/market/page.tsx
index 52d24c5..372c7a6 100644
--- a/frontend/src/app/terminal/market/page.tsx
+++ b/frontend/src/app/terminal/market/page.tsx
@@ -164,7 +164,7 @@ export default function MarketPage() {
tld: tldFilter === 'all' ? undefined : tldFilter,
minPrice: priceRange === 'low' ? undefined : priceRange === 'mid' ? 100 : priceRange === 'high' ? 1000 : undefined,
maxPrice: priceRange === 'low' ? 100 : priceRange === 'mid' ? 1000 : undefined,
- sortBy: 'newest',
+ sortBy: 'time', // Sort by end time (ending soonest first) - same as Acquire page
limit: ITEMS_PER_PAGE,
offset: (currentPage - 1) * ITEMS_PER_PAGE
})
@@ -360,29 +360,30 @@ export default function MarketPage() {
Live Market
+ {hideSpam &&
CLEAN}
- {stats.total.toLocaleString()} auctions
- {stats.highScore} premium
+ {filteredItems.length} shown
+ {hideSpam && filteredItems.length !== stats.total && / {stats.total}}