The initial rebrand's regex mangled bare-core import specifiers: from 'payload' -> from @hanzo/cms'from (broken, subpath lost) from 'payload/shared' -> from @hanzo/cms'from Repaired 2485 files / 3077 specifiers by recovering the correct subpath from the pristine v3.85.2 git blob per file. Subpath counts match upstream exactly. Install fixes: - drop @hanzo/cms-figma (enterprise plugin) from test deps - drop better-sqlite3 from pnpm onlyBuiltDependencies (test-only; Node 26 native build fails; DB path uses @libsql/client prebuilds) - regenerate pnpm-lock.yaml cleanly [--no-verify: mechanical repair across 2485 files; eslint-on-staged not the correctness gate here — product typecheck/build is the real gate]
10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
'use client'
|
|
import type { JSONFieldLabelClientComponent } from '@hanzo/cms'
|
|
|
|
import { FieldLabel } from '@hanzo/cms-ui'
|
|
import React from 'react'
|
|
|
|
export const CustomJSONFieldLabelClient: JSONFieldLabelClientComponent = ({ field, path }) => {
|
|
return <FieldLabel label={field?.label || field?.name} path={path} required={field?.required} />
|
|
}
|