diff --git a/packages/generators/add-generator.ts b/packages/generators/add-generator.ts index aaf8368015b..1eb80ed5aa1 100644 --- a/packages/generators/add-generator.ts +++ b/packages/generators/add-generator.ts @@ -162,14 +162,14 @@ export default class AddGenerator extends Generator { this.configuration.config.item = action; }); } else { - if(action === 'topScope'){ + if (action === "topScope") { return this.prompt([ - Input("topScope", "Enter line youwant to add to topScope"), + Input("topScope", "Enter line you want to add to topScope"), ]) .then((topScopeAnswer) => { this.configuration.config.topScope.push(topScopeAnswer.topScope); done(); - }) + }); } } const temp: string = action;