From e38b5ca2915cb6e8f833f3d1451279a92be21729 Mon Sep 17 00:00:00 2001 From: Jasper Zonneveld Date: Fri, 25 Mar 2022 21:40:35 +0100 Subject: [PATCH] :zap: Fix credentials import success message (#3038) --- packages/cli/commands/import/credentials.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/commands/import/credentials.ts b/packages/cli/commands/import/credentials.ts index a4d799c604..be36b53771 100644 --- a/packages/cli/commands/import/credentials.ts +++ b/packages/cli/commands/import/credentials.ts @@ -146,7 +146,7 @@ export class ImportCredentialsCommand extends Command { } private reportSuccess(total: number) { - console.info(`Successfully imported ${total} ${total === 1 ? 'workflow.' : 'workflows.'}`); + console.info(`Successfully imported ${total} ${total === 1 ? 'credential.' : 'credentials.'}`); } private async initOwnerCredentialRole() {