--- import type { FormControl } from '../core'; export interface Props { control: FormControl; showValidationHints: boolean; showErrors?: boolean; // feature flag for showing validation errors } const { control, showValidationHints } = Astro.props; const { validators = [] } = control; const isRequired: boolean = showValidationHints && validators.includes('validator-required'); --- { control.label && control.type !== "checkbox" && ( ) } { control.label && control.type === "checkbox" && ( ) }