You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Validators.js, there is a call const result = await schema.validate(data); which does not seem to work as intended. The joi validation will return an object with a error property and a result. When I run the current code, I get the validation error, but not through the indented flow. As a result, the details that explain what I messed up don't propagate back to me.
The text was updated successfully, but these errors were encountered:
In Validators.js, there is a call
const result = await schema.validate(data);
which does not seem to work as intended. The joi validation will return an object with a error property and a result. When I run the current code, I get the validation error, but not through the indented flow. As a result, thedetails
that explain what I messed up don't propagate back to me.The text was updated successfully, but these errors were encountered: