diff --git a/src/views/board/board.tsx b/src/views/board/board.tsx index 18a7d27b..591887e3 100644 --- a/src/views/board/board.tsx +++ b/src/views/board/board.tsx @@ -197,7 +197,7 @@ const Board = ({ feedCacheKey, viewType, boardIdentifier: boardIdentifierProp, t return () => clearTimeout(timer); }, []); - const currentTimeFilterName = params?.timeFilterName || timeFilterName; + const currentTimeFilterName = timeFilterName || params?.timeFilterName; const Footer = () => { let footerContent; diff --git a/src/views/catalog/catalog.tsx b/src/views/catalog/catalog.tsx index c218e6a5..03568814 100644 --- a/src/views/catalog/catalog.tsx +++ b/src/views/catalog/catalog.tsx @@ -365,7 +365,7 @@ const Catalog = ({ feedCacheKey, viewType, boardIdentifier: boardIdentifierProp, ); - const currentTimeFilterName = params?.timeFilterName || timeFilterName; + const currentTimeFilterName = timeFilterName || params?.timeFilterName; const Footer = () => { let footerContent;