diff --git a/reflex/components/chakra/forms/pininput.py b/reflex/components/chakra/forms/pininput.py index cea95ed7b..653bfb90a 100644 --- a/reflex/components/chakra/forms/pininput.py +++ b/reflex/components/chakra/forms/pininput.py @@ -18,7 +18,7 @@ class PinInput(ChakraComponent): tag = "PinInput" - # State var to bind the the input. + # State var to bind the input. value: Var[str] # If true, the pin input receives focus on mount diff --git a/reflex/components/chakra/forms/pininput.pyi b/reflex/components/chakra/forms/pininput.pyi index a25a28d7d..42f940fee 100644 --- a/reflex/components/chakra/forms/pininput.pyi +++ b/reflex/components/chakra/forms/pininput.pyi @@ -110,7 +110,7 @@ class PinInput(ChakraComponent): Args: *children: The children of the component. - value: State var to bind the the input. + value: State var to bind the input. auto_focus: If true, the pin input receives focus on mount default_value: The default value of the pin input error_border_color: The border color when the input is invalid. diff --git a/reflex/components/chakra/forms/radio.py b/reflex/components/chakra/forms/radio.py index 67ad9200b..f864fed69 100644 --- a/reflex/components/chakra/forms/radio.py +++ b/reflex/components/chakra/forms/radio.py @@ -17,7 +17,7 @@ class RadioGroup(ChakraComponent): tag = "RadioGroup" - # State var to bind the the input. + # State var to bind the input. value: Var[Any] # The default value. diff --git a/reflex/components/chakra/forms/radio.pyi b/reflex/components/chakra/forms/radio.pyi index c392170d9..e8389ed51 100644 --- a/reflex/components/chakra/forms/radio.pyi +++ b/reflex/components/chakra/forms/radio.pyi @@ -86,7 +86,7 @@ class RadioGroup(ChakraComponent): Args: *children: The children of the component. - value: State var to bind the the input. + value: State var to bind the input. default_value: The default value. name: The name of the form field style: The style of the component. diff --git a/reflex/components/chakra/forms/rangeslider.py b/reflex/components/chakra/forms/rangeslider.py index 6179f3646..0b42ad6a5 100644 --- a/reflex/components/chakra/forms/rangeslider.py +++ b/reflex/components/chakra/forms/rangeslider.py @@ -15,7 +15,7 @@ class RangeSlider(ChakraComponent): tag = "RangeSlider" - # State var to bind the the input. + # State var to bind the input. value: Var[List[int]] # The default values. diff --git a/reflex/components/chakra/forms/rangeslider.pyi b/reflex/components/chakra/forms/rangeslider.pyi index 52b3974cc..abd016184 100644 --- a/reflex/components/chakra/forms/rangeslider.pyi +++ b/reflex/components/chakra/forms/rangeslider.pyi @@ -103,7 +103,7 @@ class RangeSlider(ChakraComponent): Args: *children: The children of the component. - value: State var to bind the the input. + value: State var to bind the input. default_value: The default values. direction: The writing mode ("ltr" | "rtl") focus_thumb_on_change: If false, the slider handle will not capture focus when value changes. diff --git a/reflex/components/component.py b/reflex/components/component.py index 71031ae63..29263bf7b 100644 --- a/reflex/components/component.py +++ b/reflex/components/component.py @@ -371,7 +371,7 @@ class Component(BaseComponent, ABC): """Create an event chain from a variety of input types. Args: - args_spec: The args_spec of the the event trigger being bound. + args_spec: The args_spec of the event trigger being bound. value: The value to create the event chain from. Returns: