diff --git a/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx b/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx index 31a30dccede..900d12480c9 100644 --- a/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx +++ b/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx @@ -176,7 +176,8 @@ export const CalendarMonth = ({ const calendar = React.useMemo(() => buildCalendar(focusedYear, focusedMonth, weekStart, validators), [ focusedYear, focusedMonth, - weekStart + weekStart, + validators ]); if (!focusedDateValidated) { const toFocus = calendar diff --git a/packages/react-inline-edit-extension/src/components/Body/Body.tsx b/packages/react-inline-edit-extension/src/components/Body/Body.tsx index b4f78e8ed20..78625367baa 100644 --- a/packages/react-inline-edit-extension/src/components/Body/Body.tsx +++ b/packages/react-inline-edit-extension/src/components/Body/Body.tsx @@ -128,7 +128,7 @@ export const Body = ({ BodyComponent, rows = [], editConfig, onRowClick = () => {...props} rows={mappedRows} onRowClick={(event, row, rowProps, computedData) => - onRow(event, row, rowProps, computedData, { onRowClick, editConfig }) + onRow(event as any, row, rowProps, computedData, { onRowClick, editConfig }) } /> );