diff --git a/src/lib/components/Publication.svelte b/src/lib/components/Publication.svelte index adc1489..d8651c5 100644 --- a/src/lib/components/Publication.svelte +++ b/src/lib/components/Publication.svelte @@ -43,11 +43,8 @@ for (let i = 0; i < count; i++) { const iterResult = await publicationTree.next(); const { done, value } = iterResult; - - console.debug('Iterator result:', iterResult, 'done type:', typeof done); if (done) { - console.debug('Done condition met, setting isDone to true'); isDone = true; break; } @@ -97,10 +94,6 @@ return () => observer?.unobserve(lastElementRef!); }); - $effect(() => { - console.debug('isDone changed to:', isDone); - }); - // #endregion // #region ToC @@ -191,7 +184,6 @@ - {#if showTocButton && !showToc} @@ -239,7 +231,6 @@ /> {/if} {/each} -
{#if isLoading}