fix catalog filter counts persistence between subplebbits and page refreshes

This commit is contained in:
Tom (plebeius.eth)
2025-03-06 18:07:44 +01:00
parent 0faaa4982a
commit ad60404792
4 changed files with 66 additions and 8 deletions
+17 -1
View File
@@ -95,7 +95,23 @@ const useCatalogFeedRows = (columnCount: number, feed: any, isFeedLoaded: boolea
}
return _feed;
}, [accountComments, feed, description, rules, address, isFeedLoaded, createdAt, title, shortAddress, avatarUrl, t, isInAllView, multisub, hideThreadsWithoutImages]);
}, [
accountComments,
feed,
description,
rules,
address,
isFeedLoaded,
createdAt,
title,
shortAddress,
avatarUrl,
t,
isInAllView,
multisub,
hideThreadsWithoutImages,
searchText,
]);
const rows = useMemo(() => {
const rows = [];