This is one of the projects I'm working on and it works well on my android chrome app and on my computer, but the input field(Login page) just never updates on safari on my IOS. What could be wrong? I have this issue with all my react apps.
Input State
const [inputValue, setInputValue] = useState({
username: "",
password: "",
});
Here is the form input.
<input
autoComplete="true"
type="text"
placeholder="username"
value={inputValue.username}
onChange={(e) =>
setInputValue((prev) => ({...inputValue, username: e.target.value,}))
}
required={true}
/>
<input
type="password"
autoComplete="true"
placeholder="password"
value={inputValue.password}
onChange={(e) =>
setInputValue((prev) => ({...inputValue, password: e.target.value,}))
}
required={true}
/>