cannot type in input field ``` const [linkInput, setLinkInput] = useState(""); <Input className="mt-2 border-none placeholder:pl-6" placeholder="Link to platform" value={linkInput} onChange={(e) => { console.log(e); setLinkInput(e.target.value); }} ``` cannot type in the input field