MCPcopy
hub / github.com/codeaashu/claude-code / startConnecting

Function startConnecting

src/bridge/bridgeUI.ts:170–177  ·  view source on GitHub ↗

Start the connecting spinner. Stopped by first updateIdleStatus().

()

Source from the content-addressed store, hash-verified

168
169 /** Start the connecting spinner. Stopped by first updateIdleStatus(). */
170 function startConnecting(): void {
171 stopConnecting()
172 renderConnectingLine()
173 connectingTimer = setInterval(() => {
174 connectingTick++
175 renderConnectingLine()
176 }, 150)
177 }
178
179 /** Stop the connecting spinner. */
180 function stopConnecting(): void {

Callers 1

printBannerFunction · 0.85

Calls 2

stopConnectingFunction · 0.85
renderConnectingLineFunction · 0.85

Tested by

no test coverage detected