(address: string)
| 403 | }; |
| 404 | |
| 405 | const handleRemoveCustomServer = (address: string) => { |
| 406 | const updated = removeCustomServer(address); |
| 407 | setCustomServers(updated); |
| 408 | fetchModels(); |
| 409 | }; |
| 410 | |
| 411 | const handleToggleCustomServer = (address: string) => { |
| 412 | const updated = toggleCustomServer(address); |
nothing calls this directly
no test coverage detected