--- import { formatUSD } from "../lib/intake_manifest"; export interface Props { priceCents?: number; govFeeLabel?: string; note?: string; serviceSlug?: string; } const { priceCents, govFeeLabel, note, serviceSlug } = Astro.props; const hasPrice = typeof priceCents === "number"; const API = import.meta.env.PUBLIC_API_URL || ""; --- {hasPrice && ( )}