diff --git a/.changeset/chatty-cobras-rule.md b/.changeset/chatty-cobras-rule.md new file mode 100644 index 0000000..624e4e1 --- /dev/null +++ b/.changeset/chatty-cobras-rule.md @@ -0,0 +1,5 @@ +--- +"create-better-t-stack": patch +--- + +Simplify frontend/native prompt messages diff --git a/apps/cli/src/prompts/frontend.ts b/apps/cli/src/prompts/frontend.ts index 4ae7dfe..c846a07 100644 --- a/apps/cli/src/prompts/frontend.ts +++ b/apps/cli/src/prompts/frontend.ts @@ -81,7 +81,7 @@ export async function getFrontendChoice( }); const webFramework = await select({ - message: "Choose frontend", + message: "Choose web", options: webOptions, initialValue: DEFAULT_CONFIG.frontend[0], }); @@ -96,7 +96,7 @@ export async function getFrontendChoice( if (frontendTypes.includes("native")) { const nativeFramework = await select({ - message: "Choose native framework", + message: "Choose native", options: [ { value: "native-nativewind" as const,