We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206ce7a commit 84dbe32Copy full SHA for 84dbe32
apify-docs-theme/src/roa-loader/index.js
@@ -43,7 +43,9 @@ async function getHash(source) {
43
}
44
45
cache[cacheKey] = res.data.encoded;
46
- await new Promise((resolve) => setTimeout(resolve, 100));
+ await new Promise((resolve) => {
47
+ setTimeout(resolve, 100);
48
+ });
49
50
return res.data.encoded;
51
eslint.config.mjs
@@ -18,7 +18,6 @@ export default [
18
{
19
rules: {
20
'@typescript-eslint/no-explicit-any': 'off',
21
- 'no-promise-executor-return': 'off',
22
'no-param-reassign': 'off',
23
'no-void': 'off',
24
'no-console': 'off',
0 commit comments