()
| 51 | const [inputs, setInputs] = useState([""]) // Initialize with one input |
| 52 | |
| 53 | const addInput = () => { |
| 54 | setInputs([...inputs, ""]) |
| 55 | } |
| 56 | |
| 57 | const removeInput = (index) => { |
| 58 | setInputs(inputs.filter((_, i) => i !== index)) |
nothing calls this directly
no outgoing calls
no test coverage detected