From 3217c7ff32b778d8a2a141fabdc6eabdf5ba018d Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 2 Jun 2023 09:48:53 -0500 Subject: More custom-feed behavior fixes [APP-678] (#831) * Remove extraneous custom-feed health check * Fixes to custom feed preference sync * Fix lint * Remove dead code (client-side suggested posts constructor) * Enforce the feed-fetch limit in the client if the generator fails to observe the parameter * Bump the number of items fetched in the multifeed per feed from 5 to 10 * Reset the currently active feed when the pinned feeds change * Some fixes to icons * Add a prompt to load latest to the multifeed * Remove debug --- src/lib/routes/helpers.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lib/routes/helpers.ts') diff --git a/src/lib/routes/helpers.ts b/src/lib/routes/helpers.ts index 8aef5b83a..cdac9039a 100644 --- a/src/lib/routes/helpers.ts +++ b/src/lib/routes/helpers.ts @@ -20,6 +20,7 @@ export function isStateAtTabRoot(state: State | undefined) { return ( isTab(currentRoute.name, 'Home') || isTab(currentRoute.name, 'Search') || + isTab(currentRoute.name, 'Feeds') || isTab(currentRoute.name, 'Notifications') || isTab(currentRoute.name, 'MyProfile') ) -- cgit 1.4.1