Use home.html rather than welcome.html

This commit is contained in:
Luke Barnard 2017-02-07 11:35:17 +00:00
parent 8d4f81ff67
commit d490bd8638
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module.exports = React.createClass({
render: function() { render: function() {
return ( return (
<div className="mx_HomePage"> <div className="mx_HomePage">
<iframe src={`${this.props.teamServerUrl}/static/${this.props.teamToken}/welcome.html`}/> <iframe src={`${this.props.teamServerUrl}/static/${this.props.teamToken}/home.html`}/>
</div> </div>
); );
} }