fix(feed): "no posts" could appear in an empty board after the user published to it

This commit is contained in:
Tom (plebeius.eth)
2025-02-23 16:30:13 +01:00
parent 628115f198
commit 588d9fbdb0
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ const Board = () => {
const Footer = () => {
let footerContent;
if (feed.length === 0) {
if (combinedFeed.length === 0) {
footerContent = t('no_threads');
}
if (hasMore || (subplebbitAddresses && subplebbitAddresses.length === 0)) {