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