Remove useless spread operator

pull/21833/head
Travis Ralston 2021-07-16 23:51:44 -06:00
parent d2de9b432c
commit e3e7d945fd
2 changed files with 6 additions and 6 deletions

View File

@ -59,11 +59,11 @@ export default class TagComposer extends React.PureComponent<IProps, IState> {
this.setState({ newTag: "" });
};
private onRemove = (tag: string) => {
private onRemove(tag: string) {
// We probably don't need to proxy this, but for
// sanity of `this` we'll do so anyways.
this.props.onRemove(tag);
};
}
public render() {
return <div className='mx_TagComposer'>

View File

@ -240,12 +240,12 @@ export default class Notifications extends React.PureComponent<IProps, IState> {
return preparedNewState;
}
private async refreshPushers(): Promise<Partial<IState>> {
return { ...(await MatrixClientPeg.get().getPushers()) };
private refreshPushers(): Promise<Partial<IState>> {
return MatrixClientPeg.get().getPushers();
}
private async refreshThreepids(): Promise<Partial<IState>> {
return { ...(await MatrixClientPeg.get().getThreePids()) };
private refreshThreepids(): Promise<Partial<IState>> {
return MatrixClientPeg.get().getThreePids();
}
private showSaveError() {