diff --git a/client/modals/builder/sections/WorkModal.tsx b/client/modals/builder/sections/WorkModal.tsx
index 05c0504b..cc5c8781 100644
--- a/client/modals/builder/sections/WorkModal.tsx
+++ b/client/modals/builder/sections/WorkModal.tsx
@@ -151,14 +151,11 @@ const WorkModal: React.FC = () => {
label={t('builder.common.form.start-date.label')}
value={dayjs(field.value)}
views={['year', 'month', 'day']}
- slots={{
- textField: (params) => (
-
- ),
+ slotProps={{
+ textField: {
+ error: !!fieldState.error,
+ helperText: fieldState.error?.message || t('builder.common.form.start-date.help-text')
+ },
}}
onChange={(date: dayjs.Dayjs | null) => {
date && dayjs(date).isValid() && field.onChange(dayjs(date).format('YYYY-MM-DD'));
@@ -177,14 +174,11 @@ const WorkModal: React.FC = () => {
label={t('builder.common.form.end-date.label')}
value={dayjs(field.value)}
views={['year', 'month', 'day']}
- slots={{
- textField: (params) => (
-
- ),
+ slotProps={{
+ textField: {
+ error: !!fieldState.error,
+ helperText: fieldState.error?.message || t('builder.common.form.end-date.help-text')
+ },
}}
onChange={(date: dayjs.Dayjs | null) => {
date && dayjs(date).isValid() && field.onChange(dayjs(date).format('YYYY-MM-DD'));