(e: React.ChangeEvent<HTMLInputElement>)
| 106 | }; |
| 107 | |
| 108 | const handleRepositoryInputChange = (e: React.ChangeEvent<HTMLInputElement>) => { |
| 109 | const newRepoUrl = e.target.value; |
| 110 | setRepositoryInput(newRepoUrl); |
| 111 | if (newRepoUrl.trim() === "") { |
| 112 | // Optionally reset fields if input is cleared |
| 113 | } else { |
| 114 | loadConfigFromCache(newRepoUrl); |
| 115 | } |
| 116 | }; |
| 117 | |
| 118 | useEffect(() => { |
| 119 | if (repositoryInput) { |
nothing calls this directly
no test coverage detected