mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-28 07:51:31 +00:00
fix typos
This commit is contained in:
parent
60bac01a4a
commit
47f45fce0c
1 changed files with 7 additions and 7 deletions
|
@ -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,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue