Merge pull request #24048 from Algorithm5838/fix/markdown-ondestroy-reactive

fix: remove reactive label from onDestroy in Markdown
This commit is contained in:
Tim Baek
2026-04-24 01:32:43 -04:00
committed by GitHub

View File

@@ -82,7 +82,7 @@
$: updateHandler(content);
// Throttle parsing to once per animation frame while streaming
$: onDestroy(() => {
onDestroy(() => {
cancelAnimationFrame(pendingUpdate);
});
</script>