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;