1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-30 11:15:36 +02: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -156,7 +156,7 @@ export class EncryptServiceImplementation implements EncryptService {
} }
// don't use promise.all because this task is not io bound // don't use promise.all because this task is not io bound
let results = []; const results = [];
for (let i = 0; i < items.length; i++) { for (let i = 0; i < items.length; i++) {
results.push(await items[i].decrypt(key)); results.push(await items[i].decrypt(key));
} }