fix: eslint no async error (#2947)

* fix: eslint no async error

* just ignore
This commit is contained in:
ITOH
2023-04-02 19:47:29 +02:00
committed by GitHub
parent 7c51f731cb
commit 5e1e56146e

View File

@@ -971,6 +971,7 @@ export function createRestManager(options: CreateRestManagerOptions): RestManage
return result.status !== 204 ? ((await result.json()) as any) : undefined
}
// eslint-disable-next-line no-async-promise-executor
return await new Promise(async (resolve, reject) => {
const payload: SendRequestOptions = {
url,