You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Z:\GitHub\itsquiz-wall\shared\reducers\activations.js
31:13 error Do not use c-like loop with i++ or i +=1, instead use forEach, Map, or For of more/no-c-like-loops
✖ 1 problem (1 error, 0 warnings
I was able to fix it by replacing the loop statement (line 31) with:
I can do it more lazy :)
in file shared/reducers/activations.js (line 31) replace for (let i = 0; i < newActivations.length; i++) {
on for (let i = 0; i < newActivations.length; i = i + 1) {
Hi, Thanks for sharing this project!
I get the following error when compiling:
I was able to fix it by replacing the loop statement (line 31) with:
The text was updated successfully, but these errors were encountered: