fix typo and bump sdk
This commit is contained in:
parent
0b2038ad8d
commit
ae2a51ba7b
4 changed files with 6 additions and 4 deletions
|
@ -15,7 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
### Changed
|
||||
|
||||
- Updated lbry-sdk to [0.60.1](https://github.com/lbryio/lbry-sdk/releases/tag/v0.60.1)
|
||||
- Updated lbry-sdk to [0.61.0](https://github.com/lbryio/lbry-sdk/releases/tag/v0.61.0)
|
||||
- Drops support for publishing anonymous comments ([#3705](https://github.com/lbryio/lbry-desktop/pull/3705))
|
||||
- Don't remember past repost bid amount ([bbd263c](https://github.com/lbryio/lbry-desktop/commit/bbd263c4413935ee4fac7b7b79b7f73b42d9c1f6))
|
||||
|
||||
|
|
|
@ -210,7 +210,7 @@
|
|||
"yarn": "^1.3"
|
||||
},
|
||||
"lbrySettings": {
|
||||
"lbrynetDaemonVersion": "0.60.1",
|
||||
"lbrynetDaemonVersion": "0.61.0",
|
||||
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip",
|
||||
"lbrynetDaemonDir": "static/daemon",
|
||||
"lbrynetDaemonFileName": "lbrynet"
|
||||
|
|
|
@ -985,5 +985,7 @@
|
|||
"Internal sharing is required while signed in.": "Internal sharing is required while signed in.",
|
||||
"Your wallet is not currently synced with lbry.tv. You are in control of backing up your wallet.": "Your wallet is not currently synced with lbry.tv. You are in control of backing up your wallet.",
|
||||
"FINAL WARNING: This action is permanent and cannot be undone.": "FINAL WARNING: This action is permanent and cannot be undone.",
|
||||
"Allow the app to access third party analytics platforms": "Allow the app to access third party analytics platforms"
|
||||
"Allow the app to access third party analytics platforms": "Allow the app to access third party analytics platforms",
|
||||
"Share usage data with LBRY inc.": "Share usage data with LBRY inc.",
|
||||
"Required": "Required"
|
||||
}
|
|
@ -26,7 +26,7 @@ function UserEmailNew(props: Props) {
|
|||
const valid = newEmail.match(EMAIL_REGEX);
|
||||
|
||||
function handleUsageDataChange() {
|
||||
setLocalShareUsageData(!shareUsageData);
|
||||
setLocalShareUsageData(!localShareUsageData);
|
||||
}
|
||||
|
||||
function handleSubmit() {
|
||||
|
|
Loading…
Reference in a new issue