diff --git a/client/src/app/components/HookFormPFFields/HookFormPFGroupController.tsx b/client/src/app/components/HookFormPFFields/HookFormPFGroupController.tsx index 6fbf90f4a..aabfa88a1 100644 --- a/client/src/app/components/HookFormPFFields/HookFormPFGroupController.tsx +++ b/client/src/app/components/HookFormPFFields/HookFormPFGroupController.tsx @@ -59,8 +59,9 @@ export const HookFormPFGroupController = < control={control} name={name} render={({ field, fieldState, formState }) => { - const { isDirty, error } = fieldState; - const shouldDisplayError = error?.message && isDirty && !errorsSuppressed; + const { isDirty, isTouched, error } = fieldState; + const shouldDisplayError = + error?.message && (isDirty || isTouched) && !errorsSuppressed; return ( (