fixed bug with sorting

This commit is contained in:
noumantahir 2022-01-29 16:23:40 +05:00
parent a36f56eede
commit 8c8948f3f2

View File

@ -165,7 +165,7 @@ const CommentsContainer = ({
.then((__comments) => {
//TODO: favourable place for merging comment cache
if (selectedFilter) {
const __comments = _shortComments(selectedFilter, __comments);
__comments = _shortComments(selectedFilter, __comments);
}
__comments = _handleCachedComment(__comments);