diff --git a/src/browser/components/loginModal.jsx b/src/browser/components/loginModal.jsx index 45f32fd2..64337272 100644 --- a/src/browser/components/loginModal.jsx +++ b/src/browser/components/loginModal.jsx @@ -24,7 +24,7 @@ const LoginModal = React.createClass({ if (!this.props.show) { theServer = ''; } else if (this.props.authInfo.isProxy) { - theServer = `The proxy ${authInfo.host}:${authInfo.port}`; + theServer = `The proxy ${this.props.authInfo.host}:${this.props.authInfo.port}`; } else { theServer = `The server ${this.props.authServerURL}`; }