Revert "feat(onboarding): port first-touch hints to the TUI (#16054)" (#16062)

This reverts commit ffd2621039.
This commit is contained in:
Teknium 2026-04-26 06:31:37 -07:00 committed by GitHub
parent ffd2621039
commit 9a70260490
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 2 additions and 291 deletions

View file

@ -570,17 +570,6 @@ export function createGatewayEventHandler(ctx: GatewayEventHandlerContext): (ev:
sys(`error: ${message}`)
setStatus('ready')
}
return
case 'onboarding.hint': {
const text = String(ev.payload?.text || '').trim()
if (text) {
sys(`(tip) ${text}`)
}
return
}
}
}
}