forked from bluesky-social/statusphere-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
sort Feeds
Ray edited this page Jan 14, 2025
·
1 revision
postsArray.sort((a, b) =>
(a.post.record as { createdAt: string }).createdAt >
(b.post.record as { createdAt: string }).createdAt
? -1
: 1,
);
postsArray.sort((a, b) =>
(a.post.record as { createdAt: string }).createdAt <
(b.post.record as { createdAt: string }).createdAt
? -1
: 1,
);