Skip to content

Commit

Permalink
feat: redirect to recent filter by default (#548)
Browse files Browse the repository at this point in the history
Closes #517
  • Loading branch information
brandonroberts committed Oct 20, 2022
1 parent 43789ce commit edf99e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/[filterName]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Filter: React.FC = () => {

useEffect(() => {
if (topic) {
router.push(`${topic}/dashboard`);
router.push(`${topic}/dashboard/filter/recent`);
}
}, [router, topic]);

Expand Down

0 comments on commit edf99e7

Please sign in to comment.