()
| 208 | const calls = gatherData.calls || []; |
| 209 | |
| 210 | const addCall = () => { |
| 211 | const newCall: GatherCall = { module: '', parameters: {}, save_as: '' }; |
| 212 | handleChange('calls', [...calls, newCall]); |
| 213 | }; |
| 214 | |
| 215 | const updateCall = (index: number, field: keyof GatherCall, value: unknown) => { |
| 216 | const updated = [...calls]; |
nothing calls this directly
no test coverage detected