fix typos

This commit is contained in:
Sean Yesmunt 2020-11-10 12:21:31 -05:00
parent 60bac01a4a
commit 47f45fce0c

View file

@ -76,18 +76,18 @@ function SideNavigation(props: Props) {
const FULL_LINKS: Array<SideNavLink> = [ const FULL_LINKS: Array<SideNavLink> = [
{ {
title: 'Your Tags', title: 'Your Tags',
navigate: `/$/${PAGES.TAGS_FOLLOWING}`, link: `/$/${PAGES.TAGS_FOLLOWING}`,
icon: ICONS.TAG, icon: ICONS.TAG,
hideForUnauth: true, hideForUnauth: true,
}, },
{ {
title: 'Discover', title: 'Discover',
navigate: `/$/${PAGES.DISCOVER}`, link: `/$/${PAGES.DISCOVER}`,
icon: ICONS.DISCOVER, icon: ICONS.DISCOVER,
}, },
{ {
title: IS_WEB ? 'Purchased' : 'Library', title: IS_WEB ? 'Purchased' : 'Library',
navigate: `/$/${PAGES.LIBRARY}`, link: `/$/${PAGES.LIBRARY}`,
icon: ICONS.PURCHASED, icon: ICONS.PURCHASED,
hideForUnauth: true, hideForUnauth: true,
}, },
@ -108,7 +108,7 @@ function SideNavigation(props: Props) {
}, },
{ {
title: IS_WEB ? 'Purchased' : 'Library', title: IS_WEB ? 'Purchased' : 'Library',
navigate: `/$/${PAGES.LIBRARY}`, link: `/$/${PAGES.LIBRARY}`,
icon: ICONS.PURCHASED, icon: ICONS.PURCHASED,
hideForUnauth: true, hideForUnauth: true,
}, },
@ -150,7 +150,7 @@ function SideNavigation(props: Props) {
}, },
{ {
title: 'Rewards', title: 'Rewards',
navigate: `/$/${PAGES.REWARDS}`, link: `/$/${PAGES.REWARDS}`,
icon: ICONS.REWARDS, icon: ICONS.REWARDS,
hideForUnauth: true, hideForUnauth: true,
}, },
@ -206,7 +206,7 @@ function SideNavigation(props: Props) {
if (PINNED_URI_1 && PINNED_LABEL_1) { if (PINNED_URI_1 && PINNED_LABEL_1) {
MOBILE_LINKS.push({ MOBILE_LINKS.push({
title: PINNED_LABEL_1, title: PINNED_LABEL_1,
navigate: PINNED_URI_1, link: PINNED_URI_1,
icon: ICONS.PINNED, icon: ICONS.PINNED,
}); });
} }
@ -214,7 +214,7 @@ function SideNavigation(props: Props) {
if (PINNED_URI_2 && PINNED_LABEL_2) { if (PINNED_URI_2 && PINNED_LABEL_2) {
MOBILE_LINKS.push({ MOBILE_LINKS.push({
title: PINNED_LABEL_2, title: PINNED_LABEL_2,
navigate: PINNED_URI_2, link: PINNED_URI_2,
icon: ICONS.PINNED, icon: ICONS.PINNED,
}); });
} }