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