Define interface for RLS to ease wiring in Sliding Sync (#9150)

* Define iface for RLS

* Iterate interface
This commit is contained in:
Michael Telatynski 2022-08-09 20:46:59 +01:00 committed by GitHub
parent 736d8dfec7
commit 394e181854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 118 additions and 14 deletions

View file

@ -372,7 +372,7 @@ export default class RoomSublist extends React.Component<IProps, IState> {
};
private onTagSortChanged = async (sort: SortAlgorithm) => {
await RoomListStore.instance.setTagSorting(this.props.tagId, sort);
RoomListStore.instance.setTagSorting(this.props.tagId, sort);
this.forceUpdate();
};