refactor: go with domains as default

This commit is contained in:
decentral1se 2021-12-26 04:24:12 +01:00
parent 027c8a1420
commit f8191ac248
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func ensureAppNameFlag() error {
if NewAppName == "" && !NoInput {
prompt := &survey.Input{
Message: "Specify app name:",
Default: config.SanitiseAppName(Domain),
Default: Domain,
}
if err := survey.AskOne(prompt, &NewAppName); err != nil {
return err