mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Reverse sort order
This commit is contained in:
parent
9fb5de2485
commit
3d90eec421
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ export default function SubscriptionsPage(): JSX.Element {
|
|||
}
|
||||
|
||||
const sortedSubscriptions = useMemo(() => {
|
||||
return subscriptions.sort((a, b) => a.updatedAt.localeCompare(b.updatedAt))
|
||||
return subscriptions.sort((a, b) => b.updatedAt.localeCompare(a.updatedAt))
|
||||
}, [subscriptions])
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue