From 9c0d97d83945ad5f34ef97429884a023313673cd Mon Sep 17 00:00:00 2001 From: kushalshit27 <43465488+kushalshit27@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:20:21 +0530 Subject: [PATCH] remove survey prompt from export and import commands --- src/commands/export.ts | 13 +------------ src/commands/import.ts | 12 ------------ 2 files changed, 1 insertion(+), 24 deletions(-) diff --git a/src/commands/export.ts b/src/commands/export.ts index 6427ae75..5e3e2c9e 100644 --- a/src/commands/export.ts +++ b/src/commands/export.ts @@ -68,17 +68,6 @@ export default async function exportCMD(params: ExportParams) { // Setup context and load const context = await setupContext(nconf.get(), 'export'); await context.dump(); - log.info('Export Successful'); - - log.info(` - ================================================ - ======= Help us improve Auth0 Deploy CLI ======= - ================================================ - We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help. - We've put together a brief survey to understand how you use Deploy CLI, what you love about it, and where you think we can do better. - ===> https://www.surveymonkey.com/r/LZKMPFN <=== - - Thank you for helping us make Auth0 Deploy CLI better for everyone! - ================================================`); + log.info('Export Successful'); } diff --git a/src/commands/import.ts b/src/commands/import.ts index 527d972c..936414cb 100644 --- a/src/commands/import.ts +++ b/src/commands/import.ts @@ -61,16 +61,4 @@ export default async function importCMD(params: ImportParams) { await toolsDeploy(context.assets, context.mgmtClient, config); log.info('Import Successful'); - - log.info(` - ================================================ - ======= Help us improve Auth0 Deploy CLI ======= - ================================================ - We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help. - We've put together a brief survey to understand how you use Deploy CLI, what you love about it, and where you think we can do better. - - ===> https://www.surveymonkey.com/r/LZKMPFN <=== - - Thank you for helping us make Auth0 Deploy CLI better for everyone! - ================================================`); }