Skip to content

Commit f32a686

Browse files
authored
move ai builder to last option (#6084)
1 parent c441e33 commit f32a686

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

reflex/utils/templates.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -415,11 +415,6 @@ def get_init_cli_prompt_options() -> list[Template]:
415415
The CLI options.
416416
"""
417417
return [
418-
Template(
419-
name=constants.Templates.AI,
420-
description="[bold]Try our free AI builder.",
421-
code_url="",
422-
),
423418
Template(
424419
name=constants.Templates.DEFAULT,
425420
description="A blank Reflex app.",
@@ -430,4 +425,9 @@ def get_init_cli_prompt_options() -> list[Template]:
430425
description="Premade templates built by the Reflex team.",
431426
code_url="",
432427
),
428+
Template(
429+
name=constants.Templates.AI,
430+
description="[bold]Try our AI builder.",
431+
code_url="",
432+
),
433433
]

0 commit comments

Comments
 (0)