summaryrefslogtreecommitdiffstats
path: root/web/react/components/signup_team.jsx
diff options
context:
space:
mode:
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;
}
}