fix: always rAF-throttle markdown parsing during streaming (#23868)

This commit is contained in:
Algorithm5838
2026-04-21 07:29:33 +03:00
committed by GitHub
parent 4790faba73
commit 81383a7df1

View File

@@ -71,17 +71,11 @@
};
const updateHandler = (content) => {
if (content) {
if (done) {
cancelAnimationFrame(pendingUpdate);
if (content && !pendingUpdate) {
pendingUpdate = requestAnimationFrame(() => {
pendingUpdate = null;
parseTokens();
} else if (!pendingUpdate) {
pendingUpdate = requestAnimationFrame(() => {
pendingUpdate = null;
parseTokens();
});
}
});
}
};