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

Function regenerateQr

src/bridge/bridgeUI.ts:140–149  ·  view source on GitHub ↗

Regenerate the QR code with the given URL.

(url: string)

Source from the content-addressed store, hash-verified

138
139 /** Regenerate the QR code with the given URL. */
140 function regenerateQr(url: string): void {
141 generateQr(url)
142 .then(lines => {
143 qrLines = lines
144 renderStatusLine()
145 })
146 .catch(e => {
147 logForDebugging(`QR code generation failed: ${e}`, { level: 'error' })
148 })
149 }
150
151 /** Render the connecting spinner line (shown before first updateIdleStatus). */
152 function renderConnectingLine(): void {

Callers 3

printBannerFunction · 0.85
updateIdleStatusFunction · 0.85
setAttachedFunction · 0.85

Calls 3

generateQrFunction · 0.85
renderStatusLineFunction · 0.85
logForDebuggingFunction · 0.85

Tested by

no test coverage detected