Skip to content

Commit 7fe7f9e

Browse files
committed
fix: posts sorting on sidebar
Fix wrong sorting when a user creates several posts without the page reloading.
1 parent 4297a96 commit 7fe7f9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/discussions/posts/PostsList.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const PostsList = ({
6767
if (isTopicTab) {
6868
loadThreads(topicsIds, 1, true);
6969
}
70-
}, [filters]);
70+
}, [filters, JSON.stringify(sortedPostsIds)]);
7171

7272
const postInstances = useMemo(() => (
7373
sortedPostsIds?.map((postId, idx) => (

0 commit comments

Comments
 (0)