client/app/components/dynamic-form/getFieldLabel.js (5 lines of code) (raw):

import { toHuman } from "@/lib/utils"; export default function getFieldLabel(field) { const { title, name } = field; return title || toHuman(name); }