(address: string)
| 409 | }; |
| 410 | |
| 411 | const handleToggleCustomServer = (address: string) => { |
| 412 | const updated = toggleCustomServer(address); |
| 413 | setCustomServers(updated); |
| 414 | fetchModels(); |
| 415 | }; |
| 416 | |
| 417 | const handleCheckCustomServer = async (address: string) => { |
| 418 | await checkCustomServer(address); |
nothing calls this directly
no test coverage detected