-
Notifications
You must be signed in to change notification settings - Fork 291
fix(ai): stop typewriter animation on ai_indicator.stop
#2918
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Size Change: +114 B (+0.04%) Total Size: 290 kB
ℹ️ View Unchanged
|
This would not be that trivial, as the |
|
|
||
| const indicatorStoppedListener = channel.on('ai_indicator.stop', (event) => { | ||
| const { cid } = event; | ||
| if (channel.cid === cid) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This check is useless but I'm keeping it.
341d81b to
d0bfb10
Compare
### 🎯 Goal Add `AI_STATE_STOP` and adjust typewriter animation so that it stops when `ai_indicator.stop` event arrives. This change should be probably ported to the AI SDK too.
## [13.13.4](v13.13.3...v13.13.4) (2026-01-21) ### Bug Fixes * **ai:** stop typewriter animation on `ai_indicator.stop` ([#2918](#2918)) ([9e25b3a](9e25b3a))
🎯 Goal
Add
AI_STATE_STOPand adjust typewriter animation so that it stops whenai_indicator.stopevent arrives.This change should be probably ported to the AI SDK too.