diff --git a/tgui/packages/tgui/components/Input.tsx b/tgui/packages/tgui/components/Input.tsx index b4993914c5c..b6faa1f3474 100644 --- a/tgui/packages/tgui/components/Input.tsx +++ b/tgui/packages/tgui/components/Input.tsx @@ -150,17 +150,6 @@ export function Input(props: Props) { }, 1); }, []); - /** Updates the initial value on props change */ - useEffect(() => { - const input = inputRef.current; - if (!input) return; - - const newValue = toInputValue(value); - if (input.value === newValue) return; - - input.value = newValue; - }, [value]); - return (