From 3f479169a7c191bf4c04ff6b9b12fe2ba16b3ac6 Mon Sep 17 00:00:00 2001 From: buttercat1791 Date: Wed, 30 Apr 2025 00:12:20 -0500 Subject: [PATCH] Remove leftover console debug statements --- src/lib/components/PublicationSection.svelte | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/components/PublicationSection.svelte b/src/lib/components/PublicationSection.svelte index 4cafb7c..5eb4f24 100644 --- a/src/lib/components/PublicationSection.svelte +++ b/src/lib/components/PublicationSection.svelte @@ -42,7 +42,6 @@ return leaves[index - 1]; }); let previousLeafHierarchy: Promise = $derived.by(async () => { - console.debug('Finding previous leaf hierarchy for ', address); if (!previousLeafEvent) { return null; } @@ -50,7 +49,6 @@ }); let divergingBranches = $derived.by(async () => { - console.debug('Finding diverging branches for ', address); let [leafHierarchyValue, previousLeafHierarchyValue] = await Promise.all([leafHierarchy, previousLeafHierarchy]); const branches: [NDKEvent, number][] = [];