1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

Remove spurious void

This commit is contained in:
Travis Ralston
2019-01-29 21:46:51 -07:00
committed by GitHub
parent e7ed4c13f5
commit b3bb3aff84

View File

@@ -36,7 +36,7 @@ export default class AdvancedRoomSettingsTab extends React.Component {
}; };
} }
componentWillMount(): void { componentWillMount() {
// we handle lack of this object gracefully later, so don't worry about it failing here. // we handle lack of this object gracefully later, so don't worry about it failing here.
MatrixClientPeg.get().getRoom(this.props.roomId).getRecommendedVersion().then((v) => { MatrixClientPeg.get().getRoom(this.props.roomId).getRecommendedVersion().then((v) => {
this.setState({upgradeRecommendation: v}); this.setState({upgradeRecommendation: v});