fix: remove reactive label from onDestroy in Markdown

This commit is contained in:
Algorithm5838
2026-04-23 22:26:11 +03:00
parent d56d74b387
commit 83f3a9c543

View File

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