(value: string)
| 376 | } |
| 377 | |
| 378 | const handleAddChange = (value: string) => { |
| 379 | if (addMutation.isPending) return |
| 380 | setStore("addServer", { url: value, error: "" }) |
| 381 | void previewStatus(value, store.addServer.username, store.addServer.password, (next) => |
| 382 | setStore("addServer", { status: next }), |
| 383 | ) |
| 384 | } |
| 385 | |
| 386 | const handleAddNameChange = (value: string) => { |
| 387 | if (addMutation.isPending) return |
nothing calls this directly
no test coverage detected