diff --git a/src/pages/catchup.jsx b/src/pages/catchup.jsx index f5ce15cf..34e7571c 100644 --- a/src/pages/catchup.jsx +++ b/src/pages/catchup.jsx @@ -1088,10 +1088,11 @@ function Catchup() { checked={sortBy === key} onChange={() => { setSortBy(key); - const order = - /(replies|favourites|reblogs|density)/.test(key) - ? 'desc' - : 'asc'; + const order = /(replies|favourites|reblogs)/.test( + key, + ) + ? 'desc' + : 'asc'; setSortOrder(order); }} // disabled={key === 'account' && selectedAuthor}