I would like to explain my problem of the day.
I'm using a simple number type validation
number: Yup.number()
.required("Required")
.max(100000000, "To big")
.min(0, "Not negative number")
my problem is ,in the entry of the field, I can add only one letter the "e", I do not understand why
example "12e3"
while I would like to enter only numbers
example "123"
if you have any ideas, thank you
Neff