Matías

Results 1 comments of Matías

i just handle it like this and it worked: ``` const handleChange = (e: React.ChangeEvent) => { e.preventDefault(); handleFiles(e.target.files?.[0]); //other func that recieves(file:any) }; ```