--- import type { TextField } from '../../resource-types'; interface Props { field: TextField; value: unknown; } const { field, value } = Astro.props; const v = value == null ? '' : String(value); ---