Fix warnings and errors

This commit is contained in:
Ajay
2022-04-13 17:43:38 -04:00
parent 146ba4ff93
commit 1df8117105
4 changed files with 8 additions and 10 deletions

View File

@@ -12,7 +12,7 @@ async function get<T>(fetchFromDB: () => Promise<T>, key: string): Promise<T> {
return JSON.parse(reply);
}
} catch (e) { Logger.error(e as string)} //eslint-disable-line no-empty
} catch (e) { } //eslint-disable-line no-empty
const data = await fetchFromDB();