From 802808a9ad934ee58bb22ea256e463d10cb57e90 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Sun, 21 Feb 2021 22:37:39 +0100 Subject: [PATCH] :zap: Minor improvement --- packages/cli/commands/export/credentials.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/cli/commands/export/credentials.ts b/packages/cli/commands/export/credentials.ts index d0c2a3a543..5175e3be2d 100644 --- a/packages/cli/commands/export/credentials.ts +++ b/packages/cli/commands/export/credentials.ts @@ -125,8 +125,7 @@ export class ExportCredentialsCommand extends Command { } for (let i = 0; i < credentials.length; i++) { - const c = credentials[i]; - const {name, type, nodesAccess, data} = credentials[i]; + const { name, type, nodesAccess, data } = credentials[i]; const credential = new Credentials(name, type, nodesAccess, data); const plainData = credential.getData(encryptionKey); (credentials[i] as ICredentialsDecryptedDb).data = plainData;