We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb07a55 commit cc3c07bCopy full SHA for cc3c07b
reflex_chakra/components/forms/input.py
@@ -5,7 +5,6 @@
5
from reflex.components.literals import LiteralInputType
6
from reflex.constants import MemoizationMode
7
from reflex.event import EventHandler
8
-from reflex.utils.imports import ImportDict
9
from reflex.vars.base import Var
10
11
from reflex_chakra.components import (
@@ -74,14 +73,6 @@ class Input(ChakraComponent):
74
73
# Fired when a key is released.
75
on_key_up: EventHandler[lambda e0: [e0.key]]
76
77
- def add_imports(self) -> ImportDict:
78
- """Add imports for the Input component.
79
-
80
- Returns:
81
- The import dict.
82
- """
83
- return {"$/utils/state": "set_val"}
84
85
@classmethod
86
def create(cls, *children, **props) -> Component:
87
"""Create an Input component.
0 commit comments