mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-02 10:15:11 +00:00
Fix compile error
This commit is contained in:
parent
03827fcbee
commit
3dabf0d31d
2 changed files with 3 additions and 3 deletions
|
@ -879,6 +879,7 @@
|
||||||
"Tag selection": "Tag selection",
|
"Tag selection": "Tag selection",
|
||||||
"Select some tags to help us show you interesting things.": "Select some tags to help us show you interesting things.",
|
"Select some tags to help us show you interesting things.": "Select some tags to help us show you interesting things.",
|
||||||
"You are currently following %followingCount% tags": "You are currently following %followingCount% tags",
|
"You are currently following %followingCount% tags": "You are currently following %followingCount% tags",
|
||||||
|
"You are currently following %followingCount% tag": "You are currently following %followingCount% tag",
|
||||||
"Back": "Back",
|
"Back": "Back",
|
||||||
"Experimental Transcoding": "Experimental Transcoding",
|
"Experimental Transcoding": "Experimental Transcoding",
|
||||||
"A Folder containing FFmpeg": "A Folder containing FFmpeg",
|
"A Folder containing FFmpeg": "A Folder containing FFmpeg",
|
||||||
|
@ -1458,7 +1459,6 @@
|
||||||
"Never fear though, there are tons of ways to earn %lbc%. You can earn or purchase %lbc%, or you can have your friends send you some.": "Never fear though, there are tons of ways to earn %lbc%. You can earn or purchase %lbc%, or you can have your friends send you some.",
|
"Never fear though, there are tons of ways to earn %lbc%. You can earn or purchase %lbc%, or you can have your friends send you some.": "Never fear though, there are tons of ways to earn %lbc%. You can earn or purchase %lbc%, or you can have your friends send you some.",
|
||||||
"gaming, comedy, educational": "gaming, comedy, educational",
|
"gaming, comedy, educational": "gaming, comedy, educational",
|
||||||
"A channel is required to comment on %SITE_NAME%": "A channel is required to comment on %SITE_NAME%",
|
"A channel is required to comment on %SITE_NAME%": "A channel is required to comment on %SITE_NAME%",
|
||||||
"A channel is required to comment on lbry.tv": "A channel is required to comment on lbry.tv",
|
|
||||||
"A welcome bonus and thank you for your contribution to content freedom.": "A welcome bonus and thank you for your contribution to content freedom.",
|
"A welcome bonus and thank you for your contribution to content freedom.": "A welcome bonus and thank you for your contribution to content freedom.",
|
||||||
"You earned %lbc% new user reward.": "You earned %lbc% new user reward.",
|
"You earned %lbc% new user reward.": "You earned %lbc% new user reward.",
|
||||||
"Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.": "Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.",
|
"Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.": "Just press play on something. Anything at all. Yep, even that one. Everybody's doing it.",
|
||||||
|
|
|
@ -132,9 +132,9 @@ function HomePage(props: Props) {
|
||||||
</Button>
|
</Button>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
{rowData.map(({ title, route, link, icon, help, options = {} }, index) => (
|
{rowData.map(({ title, route, link, icon, help, options = {} }, index) => {
|
||||||
return getRowElements(title, route, link, icon, help, options, index);
|
return getRowElements(title, route, link, icon, help, options, index);
|
||||||
))}
|
})}
|
||||||
</Page>
|
</Page>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue