how to use inertia-react with useForm
The problem I'm having is: after resetting the form with useForm's reset(), the data still doesn't change!
import { useForm } from "@inertiajs/inertia-react";
const defaultFilterData: Filters = {
search: '',
trashed: '',
role: ''
}
c...