Tobias Wälde
Results
11
comments of
Tobias Wälde
trafficstars
I wrote a small function to convert the yup error into an error object: ```ts import { ValidationError } from 'yup'; type ErrorObject = { [field: string]: string[]; }; /**...