Skip to content

Commit

Permalink
[TM-1542] remove percentage based questions warning label
Browse files Browse the repository at this point in the history
  • Loading branch information
pachonjcl committed Dec 18, 2024
1 parent efcec32 commit f823bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/extensive/WizardForm/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const getSchemaFields = (fields: FormField[]) => {
}
});
} else {
schema[field.name] = field.validation?.nullable().label(field.label);
schema[field.name] = field.validation?.nullable().label(" ");
}

if (field.fieldProps.required) schema[field.name] = schema[field.name].required();
Expand Down

0 comments on commit f823bf4

Please sign in to comment.