Add spaces back to async arrow functions

As per https://github.com/matrix-org/matrix-js-sdk/pull/821

Requires https://github.com/matrix-org/matrix-js-sdk/pull/821
This commit is contained in:
David Baker 2019-01-09 18:10:35 +00:00
parent ece5cb1fcc
commit 8e4d8ccca7
6 changed files with 7 additions and 7 deletions

View file

@ -35,7 +35,7 @@ export default class StatusMessageContextMenu extends React.Component {
};
}
_onClearClick = async(e) => {
_onClearClick = async (e) => {
await MatrixClientPeg.get()._unstable_setStatusMessage("");
this.setState({message: ""});
};