Stop the connecting spinner.
()
| 178 | |
| 179 | /** Stop the connecting spinner. */ |
| 180 | function stopConnecting(): void { |
| 181 | if (connectingTimer) { |
| 182 | clearInterval(connectingTimer) |
| 183 | connectingTimer = null |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | /** Render and write the current status lines based on state. */ |
| 188 | function renderStatusLine(): void { |
no outgoing calls
no test coverage detected