AUR4109
Last updated
Was this helpful?
AUR4109: Invalid rule execution result.
This error occurs when the validation system receives an invalid value from a rule execution (for example a non-boolean/non-result value).
// ❌ Returning a string instead of a boolean/result
const badRule = () => 'yes' as any;Ensure rule implementations return true/false (or the expected validation result object), or a Promise of that value.
Identify the rule that produced the invalid result and fix its return type.
If you wrap/compose rules, ensure wrappers preserve the expected result type.
Last updated
Was this helpful?
Was this helpful?