Skip to content

Commit

Permalink
XIVY-13132 Validations
Browse files Browse the repository at this point in the history
- Fix static options validations
  • Loading branch information
ivy-lli committed Dec 9, 2024
1 parent 5f8153e commit cbc461b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const TableField = <TData extends object>({
};

const ValidationRow = <TData,>({ row, validationPath }: { row: Row<TData>; validationPath: string }) => {
const message = useValidation(`${validationPath}.${row.index}`);
const message = useValidation(`${validationPath}.[${row.index}]`);
const cells = row.getVisibleCells();
return (
<>
Expand Down

0 comments on commit cbc461b

Please sign in to comment.