From 8555dcc61386aff11c163f3a20c23d4b5232adad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=A8=20Audrey=20=E2=9C=A8?= Date: Wed, 24 Jan 2024 17:34:59 -0500 Subject: [PATCH] fix const lint (#7673) --- .../services/cryptography/encrypt.service.implementation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/platform/services/cryptography/encrypt.service.implementation.ts b/libs/common/src/platform/services/cryptography/encrypt.service.implementation.ts index 4829c297f0..7fd7bebc70 100644 --- a/libs/common/src/platform/services/cryptography/encrypt.service.implementation.ts +++ b/libs/common/src/platform/services/cryptography/encrypt.service.implementation.ts @@ -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)); }