diff --git a/reflex/reflex.py b/reflex/reflex.py index 26937e763..f9aea4982 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -337,7 +337,7 @@ def login(loglevel: constants.LogLevel = typer.Option(config.loglevel)): validated_info = hosting_cli.login() if validated_info is not None: - telemetry.send("loginv2", user_uuid=validated_info.get("user_id")) + telemetry.send("login", user_uuid=validated_info.get("user_id")) @cli.command() diff --git a/reflex/utils/prerequisites.py b/reflex/utils/prerequisites.py index 559f668a1..cc56bdf88 100644 --- a/reflex/utils/prerequisites.py +++ b/reflex/utils/prerequisites.py @@ -1413,7 +1413,7 @@ def validate_and_create_app_using_remote_template(app_name, template, templates) authenticated_token = hosting.authenticated_token() if not authenticated_token or not authenticated_token[0]: console.print( - f"Please use `reflex loginv2` to access the '{template}' template." + f"Please use `reflex login` to access the '{template}' template." ) raise typer.Exit(3)