Skip to content

Commit

Permalink
fix name collision (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
Madmat8 authored Jul 31, 2024
1 parent 19f6085 commit 3363c4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ const requiredByRecord: Record<string, boolean> = {
{{/ each }}
};

const result = passesLocalValidation<{{ classDataName (getReferenceClassType page) '' }}>(data, requiredByRecord, t, setValidation);
const validationResult = passesLocalValidation<{{ classDataName (getReferenceClassType page) '' }}>(data, requiredByRecord, t, setValidation);

if (!result) {
if (!validationResult) {
return;
}

0 comments on commit 3363c4f

Please sign in to comment.