From 0531f5218a32b771838cc5f3775b09ec4ce7b3c6 Mon Sep 17 00:00:00 2001 From: Kahlil Hodgson Date: Tue, 27 May 2025 15:53:46 +1000 Subject: [PATCH] get_app before checking for schema updates --- reflex/reflex.py | 1 + 1 file changed, 1 insertion(+) diff --git a/reflex/reflex.py b/reflex/reflex.py index 4e109739d8d..537e0a984f1 100644 --- a/reflex/reflex.py +++ b/reflex/reflex.py @@ -218,6 +218,7 @@ def _run( raise click.exceptions.Exit(1) # Warn if schema is not up to date. + prerequisites.get_app() prerequisites.check_schema_up_to_date() # Get the frontend and backend commands, based on the environment.