I currently have the issue where the number gets change once the focus is lost after I updated the package.
this worked fine until now
the code
const [inputUserId, setInputUserId] = useState("");
<NumberInput
styles={{
input: {
backgroundColor: "#0D1117",
},
}}
p={"sm"}
label="Discord ID"
placeholder="Discord ID"
value={inputUserId}
onChange={(value) => {
console.log(value);
console.log(typeof value);
setInputUserId(value.toString())
}}
error={!validInputUserId && inputUserId.length > 0}
allowDecimal={false}
allowNegative={false}
clampBehavior="none"
hideControls
leftSection={<FontAwesomeIcon icon={faDiscord} color="var(--mantine-color-starlight-2)" />}
/>
I've added a video showing the problem.
is this an error on my side?