summaryrefslogtreecommitdiffstats
path: root/web/react/components/team_signup_with_email.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/team_signup_with_email.jsx')
-rw-r--r--web/react/components/team_signup_with_email.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/team_signup_with_email.jsx b/web/react/components/team_signup_with_email.jsx
index ba32a9f97..ff4ccd4d8 100644
--- a/web/react/components/team_signup_with_email.jsx
+++ b/web/react/components/team_signup_with_email.jsx
@@ -17,7 +17,7 @@ export default class EmailSignUpPage extends React.Component {
var team = {};
var state = {serverError: ''};
- team.email = React.findDOMNode(this.refs.email).value.trim().toLowerCase();
+ team.email = ReactDOM.findDOMNode(this.refs.email).value.trim().toLowerCase();
if (!team.email || !Utils.isEmail(team.email)) {
state.emailError = 'Please enter a valid email address';
state.inValid = true;