this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Don't show toast when not on results page

+2
+2
src/pages/catchup.jsx
··· 469 469 }, [lastCatchupEndAt, range]); 470 470 471 471 useEffect(() => { 472 + if (uiState !== 'results') return; 472 473 const filterCategoryText = { 473 474 Filtered: 'filtered posts', 474 475 Groups: 'group posts', ··· 505 506 toast?.hideToast?.(); 506 507 }; 507 508 }, [ 509 + uiState, 508 510 selectedFilterCategory, 509 511 selectedAuthor, 510 512 sortBy,