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)
diff --git a/src/routes/spaces/[relay]/[room]/+page.svelte b/src/routes/spaces/[relay]/[room]/+page.svelte index 9547e654..c64b2c34 100644 --- a/src/routes/spaces/[relay]/[room]/+page.svelte +++ b/src/routes/spaces/[relay]/[room]/+page.svelte @@ -202,8 +202,12 @@ }) onDestroy(() => { - setChecked($page.url.pathname) cleanup() + + // Sveltekit calls onDestroy at the beginning of the page load for some reason + setTimeout(() => { + setChecked($page.url.pathname) + }, 300) })