pl-fe: do not reverse replies order on each rerender

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-11-18 22:49:53 +01:00
parent 46d738cb13
commit f4bd879f89

View file

@ -67,7 +67,7 @@ const makeGetDescendantsIds = () => createSelector([
} }
if (replies) { if (replies) {
replies.reverse().forEach((reply: string) => { replies.toReversed().forEach((reply: string) => {
ids.unshift(reply); ids.unshift(reply);
}); });
} }