diff --git a/CHANGELOG.md b/CHANGELOG.md index 79221606..a03fd497 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ * Make reply indicator nicer * Make share indicator nicer * Improve feed loading -* (pending) Show marker for last activity in chat +* Show marker for last activity in chat # 0.2.6 diff --git a/src/app/components/Content.svelte b/src/app/components/Content.svelte index e72ecc69..5ad2a75d 100644 --- a/src/app/components/Content.svelte +++ b/src/app/components/Content.svelte @@ -115,8 +115,6 @@ const hasEllipsis = $derived(shortContent.some(isEllipsis)) const expandInline = $derived(hasEllipsis && expandMode === "inline") const expandBlock = $derived(hasEllipsis && expandMode === "block") - - $inspect(fullContent)