From 83c1ee35bc64c56a79c697e3b64b57b2a64d863d Mon Sep 17 00:00:00 2001 From: Lendemor Date: Wed, 15 Jan 2025 21:21:59 +0100 Subject: [PATCH] fix constants API --- reflex/constants/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/constants/compiler.py b/reflex/constants/compiler.py index d98c04d76..13982eab8 100644 --- a/reflex/constants/compiler.py +++ b/reflex/constants/compiler.py @@ -36,7 +36,7 @@ class CompileVars(SimpleNamespace): # The expected variable name where the rx.App is stored. APP = "app" # The expected variable name where the API object is stored for deployment. - API = "api" + API = "_api" # The name of the router variable. ROUTER = "router" # The name of the socket variable.