summaryrefslogtreecommitdiffstats
path: root/web/react/components/login.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-06-28 19:25:39 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-06-28 19:36:41 -0700
commit2cd5f3629ff2410127a8fdc5df92fb16f52fa457 (patch)
treec31c1393e25aa141d1558268d49c5995d523ad2d /web/react/components/login.jsx
parentbf8511fa479e69c0985a2ff153bde953454e1bf2 (diff)
downloadchat-2cd5f3629ff2410127a8fdc5df92fb16f52fa457.tar.gz
chat-2cd5f3629ff2410127a8fdc5df92fb16f52fa457.tar.bz2
chat-2cd5f3629ff2410127a8fdc5df92fb16f52fa457.zip
Fixed typo in team domain look-up page
Diffstat (limited to 'web/react/components/login.jsx')
-rw-r--r--web/react/components/login.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/login.jsx b/web/react/components/login.jsx
index 85df5f797..3b6f96c2d 100644
--- a/web/react/components/login.jsx
+++ b/web/react/components/login.jsx
@@ -37,7 +37,7 @@ var FindTeamDomain = React.createClass({
window.location.href = window.location.protocol + "//" + domain + "." + utils.getDomainWithOutSub();
}
else {
- this.state.server_error = "We couldn't find your " + strings.TeamPlural + ".";
+ this.state.server_error = "We couldn't find your " + strings.Team + ".";
this.setState(this.state);
}
}.bind(this),