@inertiajs/react Version
2.1.1
Backend stack (optional)
eslint: 9.33.0
typescript-eslint: 8.39.1
typescript: 5.9.2
Describe the problem
Avoid referencing unbound methods which may cause unintentional scoping of this.
If your function does not access this, you can annotate it with this: void, or consider using an arrow function instead @typescript-eslint/unbound-method
Steps to reproduce
const {
reset,
} = useForm({
...
});