Skip to content

Commit

Permalink
fix js loop error
Browse files Browse the repository at this point in the history
  • Loading branch information
birdpump committed Aug 12, 2024
1 parent a1bc02c commit 8b93dfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/app/appData.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export async function queryAvailableLockers() {
}

let finalLevels = [];
for (let level in levels) {
for (let level of levels) {
console.log(level)
let postLockerArr = await Locker.findAll({
where: {
Expand Down

0 comments on commit 8b93dfb

Please sign in to comment.