From 3932ecf7c0630063359ff7eba2608e5121f59b56 Mon Sep 17 00:00:00 2001 From: zeppi Date: Mon, 25 Apr 2022 10:38:02 -0400 Subject: [PATCH] restore tags link --- ui/component/sideNavigation/view.jsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/component/sideNavigation/view.jsx b/ui/component/sideNavigation/view.jsx index f148c31d2..a0f08ee2a 100644 --- a/ui/component/sideNavigation/view.jsx +++ b/ui/component/sideNavigation/view.jsx @@ -83,6 +83,11 @@ function SideNavigation(props: Props) { link: `/$/${PAGES.CHANNELS_FOLLOWING}`, icon: ICONS.SUBSCRIBE, }; + const TAGS_FROM_FOLLOWING = { + title: 'Your Tags', + link: `/$/${PAGES.TAGS_FOLLOWING}`, + icon: ICONS.TAG, + }; const DISCOVER = { title: 'Discover', @@ -421,6 +426,7 @@ function SideNavigation(props: Props) { > {getLink(HOME)} {getLink(RECENT_FROM_FOLLOWING)} + {getLink(TAGS_FROM_FOLLOWING)} {getLink(DISCOVER)} {getLink(LIBRARY)} {getLink(PLAYLISTS)}