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