(
event: Event & {currentTarget: HTMLInputElement},
)
| 254 | ); |
| 255 | |
| 256 | const handleNewIdChange = ( |
| 257 | event: Event & {currentTarget: HTMLInputElement}, |
| 258 | ) => { |
| 259 | const id = event.currentTarget.value; |
| 260 | setNewId(id); |
| 261 | setNewIdOk(!props.has(id)); |
| 262 | }; |
| 263 | const handleClick = () => { |
| 264 | const id = newId(); |
| 265 | if (props.has(id)) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…