MCPcopy Create free account
hub / github.com/Cawlumm/lyftr / ProgramFormData

Interface ProgramFormData

web/src/pages/EditProgram.tsx:11–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10interface ProgramFormData {
11 name: string
12 notes: string
13 days: DayDraft[]
14}
15
16export default function EditProgram() {
17 const { id } = useParams<{ id: string }>()
18 const navigate = useNavigate()
19 const { settings } = useSettingsStore()
20 const wUnit = weightShort(settings.weight_unit)
21 const [loading, setLoading] = useState(false)
22 const [initialLoading, setInitialLoading] = useState(true)
23 const [error, setError] = useState('')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected