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! - ================================================`); }