(event: ChangeEvent<HTMLTextAreaElement>)
| 166 | }; |
| 167 | |
| 168 | const handleSSLValueChange = (event: ChangeEvent<HTMLTextAreaElement>) => { |
| 169 | setPartialConnection({ |
| 170 | ssl: { |
| 171 | ...connection.ssl, |
| 172 | [selectedSSLField]: event.target.value, |
| 173 | }, |
| 174 | }); |
| 175 | }; |
| 176 | |
| 177 | const handleUpsertConnection = async () => { |
| 178 | if (isRequesting) { |
nothing calls this directly
no test coverage detected