Commit 5a21b03
committed
fix(web): replace Array.from with spread operator for ESLint compliance
Fix unicorn/prefer-spread rule violation in apps/web/src/test/helpers/app-ready.ts:25
Change Array.from(document.querySelectorAll('script[src*="index-"]')) to
[...document.querySelectorAll('script[src*="index-"]')]1 parent e8c69e1 commit 5a21b03
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
0 commit comments