From 1d4fda273b9c085464645185337eae385dabe5a8 Mon Sep 17 00:00:00 2001 From: Elijah Ahianyo Date: Tue, 27 Jun 2023 20:09:58 +0000 Subject: [PATCH] pc export flag rename (#1258) --- reflex/reflex.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reflex/reflex.py b/reflex/reflex.py index 2c54b0efc..3c32da325 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -211,16 +211,16 @@ def export( backend: bool = typer.Option( True, "--frontend-only", help="Export only frontend.", show_default=False ), - for_rx_deploy: bool = typer.Option( + for_reflex_deploy: bool = typer.Option( False, - "--for-rx-deploy", + "--for-reflex-deploy", help="Whether export the app for Reflex Deploy Service.", ), ): """Export the app to a zip file.""" config = get_config() - if for_rx_deploy: + if for_reflex_deploy: # Get the app config and modify the api_url base on username and app_name. config.api_url = prerequisites.get_production_backend_url()