fix: default to skip primary category

This commit is contained in:
veganbeef 2025-05-09 16:57:08 -07:00
parent f350aaa897
commit d38bce50c5
No known key found for this signature in database
2 changed files with 6 additions and 5 deletions

View File

@ -192,6 +192,9 @@ export async function init() {
name: 'primaryCategory',
message: 'It is strongly recommended to choose a primary category and tags to help users discover your mini app.\n\nSelect a primary category:',
choices: [
new inquirer.Separator(),
{ name: 'Skip (not recommended)', value: null },
new inquirer.Separator(),
{ name: 'Games', value: 'games' },
{ name: 'Social', value: 'social' },
{ name: 'Finance', value: 'finance' },
@ -204,11 +207,9 @@ export async function init() {
{ name: 'Education', value: 'education' },
{ name: 'Developer Tools', value: 'developer-tools' },
{ name: 'Entertainment', value: 'entertainment' },
{ name: 'Art & Creativity', value: 'art-creativity' },
new inquirer.Separator(),
{ name: 'Skip (not recommended)', value: null }
{ name: 'Art & Creativity', value: 'art-creativity' }
],
default: 'social'
default: null
},
{
type: 'input',

View File

@ -1,6 +1,6 @@
{
"name": "@neynar/create-farcaster-mini-app",
"version": "1.2.25",
"version": "1.2.26",
"type": "module",
"private": false,
"access": "public",