Browse Source

Remove leftover console debug statements

master
buttercat1791 11 months ago
parent
commit
3f479169a7
  1. 2
      src/lib/components/PublicationSection.svelte

2
src/lib/components/PublicationSection.svelte

@ -42,7 +42,6 @@
return leaves[index - 1]; return leaves[index - 1];
}); });
let previousLeafHierarchy: Promise<NDKEvent[] | null> = $derived.by(async () => { let previousLeafHierarchy: Promise<NDKEvent[] | null> = $derived.by(async () => {
console.debug('Finding previous leaf hierarchy for ', address);
if (!previousLeafEvent) { if (!previousLeafEvent) {
return null; return null;
} }
@ -50,7 +49,6 @@
}); });
let divergingBranches = $derived.by(async () => { let divergingBranches = $derived.by(async () => {
console.debug('Finding diverging branches for ', address);
let [leafHierarchyValue, previousLeafHierarchyValue] = await Promise.all([leafHierarchy, previousLeafHierarchy]); let [leafHierarchyValue, previousLeafHierarchyValue] = await Promise.all([leafHierarchy, previousLeafHierarchy]);
const branches: [NDKEvent, number][] = []; const branches: [NDKEvent, number][] = [];

Loading…
Cancel
Save