From d077034f5df113cbe48b0fee0223c0ec954a44b1 Mon Sep 17 00:00:00 2001 From: benedikt-bartscher <31854409+benedikt-bartscher@users.noreply.github.com> Date: Mon, 11 Nov 2024 21:56:35 +0100 Subject: [PATCH] fix typo Co-authored-by: Masen Furer --- reflex/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/state.py b/reflex/state.py index 1cbac53ce..2e813c54a 100644 --- a/reflex/state.py +++ b/reflex/state.py @@ -2379,7 +2379,7 @@ class ComponentState(State, mixin=True): if type(self)._mixin: raise ReflexRuntimeError( f"{ComponentState.__name__} {type(self).__name__} is not meant to be initialized directly. " - + "Use the `create` method to create a new instance and access the statte via the `State` attribute." + + "Use the `create` method to create a new instance and access the state via the `State` attribute." ) super().__init__(*args, **kwargs)