(address: string)
| 397 | |
| 398 | // Custom server handlers |
| 399 | const handleAddCustomServer = (address: string) => { |
| 400 | const updated = addCustomServer(address); |
| 401 | setCustomServers(updated); |
| 402 | fetchModels(); |
| 403 | }; |
| 404 | |
| 405 | const handleRemoveCustomServer = (address: string) => { |
| 406 | const updated = removeCustomServer(address); |
nothing calls this directly
no test coverage detected