summaryrefslogtreecommitdiffstats
path: root/web/react/components/signup_team.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-22 08:31:10 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-22 08:47:00 -0500
commit4c92a1c1e35402730f74cf24a0c71729f4d0a676 (patch)
treea614a1bd7c10414182696e794a9e8dfc119e280e /web/react/components/signup_team.jsx
parent040bff2b9f384b88179f6ec1beb40d92102c9ba3 (diff)
downloadchat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.tar.gz
chat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.tar.bz2
chat-4c92a1c1e35402730f74cf24a0c71729f4d0a676.zip
Updating some client deps + eslint
Diffstat (limited to 'web/react/components/signup_team.jsx')
-rw-r--r--web/react/components/signup_team.jsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/web/react/components/signup_team.jsx b/web/react/components/signup_team.jsx
index 098e9f65a..5e8ae117d 100644
--- a/web/react/components/signup_team.jsx
+++ b/web/react/components/signup_team.jsx
@@ -130,21 +130,21 @@ export default class TeamSignUp extends React.Component {
return (
<div>
{teamListing}
- <EmailSignUpPage />
+ <EmailSignUpPage/>
</div>
);
} else if (this.state.page === 'gitlab') {
return (
<div>
{teamListing}
- <SSOSignupPage service={Constants.GITLAB_SERVICE} />
+ <SSOSignupPage service={Constants.GITLAB_SERVICE}/>
</div>
);
} else if (this.state.page === 'google') {
return (
<div>
{teamListing}
- <SSOSignupPage service={Constants.GOOGLE_SERVICE} />
+ <SSOSignupPage service={Constants.GOOGLE_SERVICE}/>
</div>
);
} else if (this.state.page === 'none') {
@@ -157,6 +157,8 @@ export default class TeamSignUp extends React.Component {
</div>
);
}
+
+ return null;
}
}