Skip to content

Commit

Permalink
eslint part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
NexusKitten authored Jul 29, 2023
1 parent bfa133d commit df7b906
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extensions/NexusKitten/trampoline.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@
break;
}
for (let i = 0; i < jsonData.length; i++) {
list.push(jsonData[i].username)
list.push(jsonData[i].username);
}
if (!(jsonData.length == 40)) {
break;
Expand Down Expand Up @@ -347,7 +347,7 @@
break;
}
for (let i = 0; i < jsonData.length; i++) {
list.push(jsonData[i].username)
list.push(jsonData[i].username);
}
if (!(jsonData.length == 40)) {
break;
Expand All @@ -370,7 +370,7 @@
break;
}
for (let i = 0; i < jsonData.length; i++) {
list.push(jsonData[i].title)
list.push(jsonData[i].title);
}
if (!(jsonData.length == 40)) {
break;
Expand Down

0 comments on commit df7b906

Please sign in to comment.