Skip to content

Commit

Permalink
Fix: Missing return statement added
Browse files Browse the repository at this point in the history
  • Loading branch information
antonyagustine committed Jan 8, 2024
1 parent c9c53eb commit 61176df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/contentstack-import/src/import/module-importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ class ModuleImporter {
this.importConfig.forceStopMarketplaceAppsPrompt ||
(await cliux.inquire({
type: 'confirm',
message: 'Can you check the fix on the given path and confirm if you would like to proceed with the fix?',
name: 'confirmation',
message: 'Can you check the fix on the given path and confirm if you would like to proceed with the fix?',
}))
) {
return true;
Expand All @@ -153,6 +153,8 @@ class ModuleImporter {
return false;
}
}

return true;
} catch (error) {
trace(error);
log(this.importConfig, `Audit failed with following error. ${error}`, 'error');
Expand Down

0 comments on commit 61176df

Please sign in to comment.