diff --git a/reflex/reflex.py b/reflex/reflex.py index 0a552c3fb..ab7f53741 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -10,7 +10,6 @@ from typing import List, Optional import typer import typer.core from reflex_cli.deployments import deployments_cli -from reflex_cli.v2.deployments import hosting_cli from reflex_cli.utils import dependency from reflex import constants @@ -384,13 +383,6 @@ def login( _login() -@cli.command() -def loginv2(loglevel: constants.LogLevel = typer.Option(config.loglevel)): - from reflex_cli.v2 import cli as hosting_cli - - hosting_cli.login() - - @cli.command() def logout( loglevel: constants.LogLevel = typer.Option( @@ -708,11 +700,6 @@ cli.add_typer( name="deployments", help="Subcommands for managing the Deployments.", ) -cli.add_typer( - hosting_cli, - name="apps", - help="Subcommands for managing the Deployments.", -) cli.add_typer( custom_components_cli, name="component",