1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

fix const lint (#7673)

This commit is contained in:
✨ Audrey ✨
2024-01-24 17:34:59 -05:00
committed by GitHub
parent df2329f059
commit 8555dcc613

View File

@@ -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));
}