We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d0825d commit dc6a967Copy full SHA for dc6a967
src/views/contact/contactList.tsx
@@ -56,8 +56,8 @@ const fetchContacts = async (userAddress: string) => {
56
57
return [...myEmailContacts, ...myTelegramContacts].sort(
58
(a, b) =>
59
- new Date(a.accessGrantTimestamp).getTime() -
60
- new Date(b.accessGrantTimestamp).getTime()
+ new Date(b.accessGrantTimestamp).getTime() -
+ new Date(a.accessGrantTimestamp).getTime()
61
);
62
};
63
0 commit comments