(error)
| 539 | } |
| 540 | |
| 541 | const getErrorMsg = (error) => |
| 542 | typeof error.response?.data === 'object' ? error.response.data.message : error.response?.data || error.message |
| 543 | |
| 544 | const addNewServer = async () => { |
| 545 | if (!validateServerUrl(serverUrl)) return |
no outgoing calls
no test coverage detected