- {SIDE_LINKS.map((linkProps) => {
- // $FlowFixMe
- const { hideForUnauth, ...passedProps } = linkProps;
- return !email && linkProps.hideForUnauth && IS_WEB ? null : (
- -
-
- );
- })}
+ {getLink(HOME)}
+ {getLink(RECENT_FROM_FOLLOWING)}
+ {getLink(PLAYLISTS)}
+
+
+ {EXTRA_SIDEBAR_LINKS && (
+ <>
+ {/* $FlowFixMe -- GetLinksData should fix it's data type */}
+ {EXTRA_SIDEBAR_LINKS.map((linkProps) => getLink(linkProps))}
+ {getLink(WILD_WEST)}
+ >
+ )}
+
+
{getSubscriptionSection()}
{getFollowedTagsSection()}
{!isAuthenticated && sidebarOpen && unAuthNudge}
@@ -422,61 +427,31 @@ function SideNavigation(props: Props) {