summaryrefslogtreecommitdiffstats
path: root/web/react/pages/signup_team_complete.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-07-29 07:52:59 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-07-29 07:52:59 -0400
commit63a17cf4f6c23ccd32a569194956425f22c761d6 (patch)
treeac89dcaa570edb1cb088d6000fe1db3698c1ba82 /web/react/pages/signup_team_complete.jsx
parentd222f6c7a3c69a68879cc0fd5aeb7343d72dfb39 (diff)
parentf084188010ccc0b82f17b99e5cacde74e732c318 (diff)
downloadchat-63a17cf4f6c23ccd32a569194956425f22c761d6.tar.gz
chat-63a17cf4f6c23ccd32a569194956425f22c761d6.tar.bz2
chat-63a17cf4f6c23ccd32a569194956425f22c761d6.zip
Merge pull request #265 from mattermost/mm-1711
MM-1711 update sign-up and login UI
Diffstat (limited to 'web/react/pages/signup_team_complete.jsx')
-rw-r--r--web/react/pages/signup_team_complete.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/pages/signup_team_complete.jsx b/web/react/pages/signup_team_complete.jsx
index 346f2ab5a..71806c2ea 100644
--- a/web/react/pages/signup_team_complete.jsx
+++ b/web/react/pages/signup_team_complete.jsx
@@ -3,9 +3,9 @@
var SignupTeamComplete =require('../components/signup_team_complete.jsx');
-global.window.setup_signup_team_complete_page = function(email, name, data, hash) {
+global.window.setup_signup_team_complete_page = function(email, data, hash) {
React.render(
- <SignupTeamComplete name={name} email={email} hash={hash} data={data}/>,
+ <SignupTeamComplete email={email} hash={hash} data={data}/>,
document.getElementById('signup-team-complete')
);
};