diff --git a/packages/cli/src/oclif/commands/migrate.js b/packages/cli/src/oclif/commands/migrate.js index 79d2a5cbf..c26bf5b15 100644 --- a/packages/cli/src/oclif/commands/migrate.js +++ b/packages/cli/src/oclif/commands/migrate.js @@ -134,19 +134,6 @@ class MigrateCommand extends BaseCommand { try { await callAPI(url, { method: 'POST', body }); - } catch (errorResponse) { - // Verify if this error is something we can retry with confirmation - const requiresConfirmation = errorResponse.status === 409; - if (requiresConfirmation) { - this.stopSpinner(); - - this.log(''); - - this.log(); - } else { - // Unhandled error - throw errorResponse; - } } finally { this.stopSpinner(); }