diff --git a/packages/ui/components/field/field.tsx b/packages/ui/components/field/field.tsx index 56c0b1081..74d4e0a35 100644 --- a/packages/ui/components/field/field.tsx +++ b/packages/ui/components/field/field.tsx @@ -138,7 +138,7 @@ export function FieldRootContainer({ data-readonly={readonly ? 'true' : 'false'} className={cn( 'field--FieldRootContainer field-card-container dark-mode-disabled group relative z-20 flex h-full w-full items-center rounded-[2px] bg-white/90 ring-2 ring-gray-200 transition-all', - !isValidating && color?.base, + !(isValidating && isFieldUnsignedAndRequired(field)) && color?.base, { 'px-2': field.type !== FieldType.SIGNATURE && field.type !== FieldType.FREE_SIGNATURE, 'justify-center': !field.inserted,