From abc09f90749c8a47a4180f06d6e63cf506f58a28 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Thu, 7 Sep 2023 01:41:26 -0700 Subject: [PATCH] Don't show app running message twice (#1770) --- reflex/utils/exec.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reflex/utils/exec.py b/reflex/utils/exec.py index 6a1c248e1..f5d22e817 100644 --- a/reflex/utils/exec.py +++ b/reflex/utils/exec.py @@ -92,8 +92,9 @@ def run_process_and_launch_url(run_command: list[str]): if get_config().frontend_path != "": url = urljoin(url, get_config().frontend_path) console.print(f"App running at: [bold green]{url}") + first_run = False else: - console.print("New packages detected updating app...") + console.print("New packages detected: Updating app...") else: console.debug(line) new_hash = detect_package_change(json_file_path)