diff --git a/packages/web/recoil/main.tsx b/packages/web/recoil/main.tsx index d721d91..848b77d 100644 --- a/packages/web/recoil/main.tsx +++ b/packages/web/recoil/main.tsx @@ -115,7 +115,7 @@ export const sortedRoomSelector = selector({ return 1; } - if (a.lastActivityDate.toDate() > b.lastActivityDate.toDate()) { + if (a.lastActivityDate.toDate() < b.lastActivityDate.toDate()) { return 1; }