no need to pass title to embedded gui

This commit is contained in:
Ben Wheeler 2018-09-06 16:54:12 -04:00
parent 2f5604d23d
commit 2a19bb283f
2 changed files with 2 additions and 1 deletions

View file

@ -146,7 +146,6 @@ const PreviewPresentation = ({
previewInfoVisible="false"
projectHost={projectHost}
projectId={projectId}
projectTitle={projectInfo.title}
/>
</div>
<FlexRow className="project-notes">

View file

@ -362,7 +362,9 @@ class Preview extends React.Component {
className="gui"
projectHost={this.props.projectHost}
projectId={this.state.projectId}
projectTitle={this.props.projectInfo.title}
onClickLogout={this.handleLogout}
onUpdateProjectTitle={this.handleUpdateProjectTitle}
/>
);
}