浏览代码

remove that suffix

Khaleel Al-Adhami 3 周之前
父节点
当前提交
ac29df20b4
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      reflex/state.py

+ 2 - 0
reflex/state.py

@@ -1287,6 +1287,8 @@ class BaseState(Base, ABC, extra=pydantic.Extra.allow):
         if not super().__getattribute__("__dict__"):
             return super().__getattribute__(name)
 
+        name = name.removesuffix("_rx_state_")
+
         # Fast path for dunder
         if name.startswith("__"):
             return super().__getattribute__(name)