()
| 521 | }, |
| 522 | |
| 523 | refreshDisplay(): void { |
| 524 | // Skip during reconnecting/failed — renderStatusLine clears then returns |
| 525 | // early for those states, which would erase the spinner/error. |
| 526 | if (currentState === 'reconnecting' || currentState === 'failed') return |
| 527 | renderStatusLine() |
| 528 | }, |
| 529 | } |
| 530 | } |
| 531 |
nothing calls this directly
no test coverage detected