(state: Partial<Connection>)
| 132 | }, [sslType]); |
| 133 | |
| 134 | const setPartialConnection = (state: Partial<Connection>) => { |
| 135 | setConnection({ |
| 136 | ...connection, |
| 137 | ...state, |
| 138 | }); |
| 139 | }; |
| 140 | |
| 141 | const handleSSLFileInputChange = (event: ChangeEvent<HTMLInputElement>) => { |
| 142 | const files = event.currentTarget.files; |
no outgoing calls
no test coverage detected