1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-16 22:01:54 +03:00

Fix some lint errors.

This commit is contained in:
Damir Jelić
2019-11-13 10:30:38 +01:00
parent 1cc64f2426
commit 1df28c7526
4 changed files with 11 additions and 12 deletions

View File

@ -633,10 +633,10 @@ function _clearStorage() {
baseUrl: "",
});
const clear = async() => {
const clear = async () => {
await EventIndexPeg.deleteEventIndex();
await cli.clearStores();
}
};
return clear();
}