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();
}