Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
fix(generators): Fixes #248, ignite generate navigator (#262 by @osrl)
Browse files Browse the repository at this point in the history
  • Loading branch information
osrl authored and jamonholmgren committed Oct 7, 2019
1 parent 2bd7fc4 commit f178b2a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions commands/generate/navigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ module.exports = {
choices: allPascalScreens,
}

pascalScreens = await ask(askForScreens).screens
const result = await ask(askForScreens)
pascalScreens = result.screens
}
}

Expand All @@ -110,7 +111,8 @@ module.exports = {
choices: allPascalNavigators,
}

pascalNavigators = await ask(askForNavigators).navigators
const result = await ask(askForNavigators)
pascalNavigators = result.navigators
}
}

Expand Down

0 comments on commit f178b2a

Please sign in to comment.