diff --git a/src/app.jsx b/src/app.jsx index 932332b8..1e1eb9e5 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -120,8 +120,7 @@ function startVisibility() { (async () => { try { const fetchHome = masto.v1.timelines.listHome({ - limit: 2, - // Need 2 because "new posts" only appear when there are 2 or more + limit: 1, }); const fetchNotifications = masto.v1.notifications.list({ limit: 1, diff --git a/src/pages/home.jsx b/src/pages/home.jsx index fe232d69..57aaec13 100644 --- a/src/pages/home.jsx +++ b/src/pages/home.jsx @@ -110,7 +110,7 @@ function Home({ hidden }) { - {snapStates.homeNew.length > 1 && ( + {snapStates.homeNew.length > 0 && (