From 426d11319efe3d6720e88d916b3de72c1b10aac6 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Sun, 6 Feb 2022 14:37:10 -0800 Subject: [PATCH] Update main.tsx --- packages/web/recoil/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }