diff --git a/src/routes/[...slug]/+page.svelte b/src/routes/[...slug]/+page.svelte index 9640d2f..54c0093 100644 --- a/src/routes/[...slug]/+page.svelte +++ b/src/routes/[...slug]/+page.svelte @@ -2,6 +2,8 @@ import ContentRows from '$lib/components/ContentRows.svelte'; import Accordion from '$lib/components/Accordion.svelte'; import Comments from '$lib/components/Comments.svelte'; + import PostActions from '$lib/components/PostActions.svelte'; + import { page } from '$app/stores'; import type { PageData } from './$types'; let { data }: { data: PageData } = $props(); @@ -14,6 +16,17 @@ {/if} +{#if data.commentPageId} +