useQueryWithStatus from convex-helpers does not catch Validation Errors
const params = useParams()
const id = params.id as Id<"practices">
const {
data: question,
isPending,
isError,
} = useQueryWithStatus(api.example.byId, {
id,
})
if the id does not match
args: {
id: zid("table"),
},
instead of having isError true, an error is raised in the frontend. is this supposed to happen?
