diff --git a/package.json b/package.json index b1a9ac9fb..0c2b79c7a 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "hast-util-sanitize": "^1.1.2", "keytar": "^4.2.1", "lbry-redux": "lbryio/lbry-redux#820b6eeadf9e58c1e5027fd4d92808ba817b410e", - "lbryinc": "lbryio/lbryinc#cee70d482cf352f2e66215fa109f4178406228ca", + "lbryinc": "lbryio/lbryinc#b3bb8c67745235ef54baea95accaedaa4bb86d4d", "localforage": "^1.7.1", "mammoth": "^1.4.6", "mime": "^2.3.1", diff --git a/src/renderer/component/userEmailNew/view.jsx b/src/renderer/component/userEmailNew/view.jsx index d6079c16f..c0ea2b5e5 100644 --- a/src/renderer/component/userEmailNew/view.jsx +++ b/src/renderer/component/userEmailNew/view.jsx @@ -69,12 +69,7 @@ class UserEmailNew extends React.PureComponent {
{cancelButton} -

- -

- {`${__('Your email may be used to sync usage data across devices.')} `} -

); diff --git a/src/renderer/component/userEmailVerify/index.js b/src/renderer/component/userEmailVerify/index.js index d7953d481..b7e009438 100644 --- a/src/renderer/component/userEmailVerify/index.js +++ b/src/renderer/component/userEmailVerify/index.js @@ -2,7 +2,7 @@ import { connect } from 'react-redux'; import { selectEmailToVerify, doUserResendVerificationEmail, - doUserFetch, + doUserCheckEmailVerified, selectUser, } from 'lbryinc'; import { doNavigate } from 'redux/actions/navigation'; @@ -15,7 +15,7 @@ const select = state => ({ const perform = dispatch => ({ resendVerificationEmail: email => dispatch(doUserResendVerificationEmail(email)), - doCheckEmailVerified: () => dispatch(doUserFetch(true)), + checkEmailVerified: () => dispatch(doUserCheckEmailVerified()), navigate: path => dispatch(doNavigate(path)), }); diff --git a/src/renderer/component/userEmailVerify/view.jsx b/src/renderer/component/userEmailVerify/view.jsx index 03c5d8d26..282c45317 100644 --- a/src/renderer/component/userEmailVerify/view.jsx +++ b/src/renderer/component/userEmailVerify/view.jsx @@ -6,7 +6,7 @@ type Props = { cancelButton: React.Node, email: string, resendVerificationEmail: string => void, - doCheckEmailVerified: () => void, + checkEmailVerified: () => void, user: { has_verified_email: boolean, }, @@ -40,8 +40,8 @@ class UserEmailVerify extends React.PureComponent { } checkIfVerified() { - const { doCheckEmailVerified } = this.props; - doCheckEmailVerified(); + const { checkEmailVerified } = this.props; + checkEmailVerified(); } emailVerifyCheckInterval: ?IntervalID;