Skip to content

Commit

Permalink
fix const lint (#7673)
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyality authored Jan 24, 2024
1 parent df2329f commit 8555dcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export class EncryptServiceImplementation implements EncryptService {
}

// don't use promise.all because this task is not io bound
let results = [];
const results = [];
for (let i = 0; i < items.length; i++) {
results.push(await items[i].decrypt(key));
}
Expand Down

0 comments on commit 8555dcc

Please sign in to comment.