chore: cleanup unused imports
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Damillora 2024-11-22 04:16:33 +07:00
parent 761ee416cd
commit 825dfbbef5

View File

@ -1,7 +1,6 @@
<script lang="ts"> <script lang="ts">
import dayjs from 'dayjs'; import dayjs from 'dayjs';
import { import {
Hero,
PostHeader, PostHeader,
Post, Post,
PostMain, PostMain,
@ -11,22 +10,8 @@
PostCard, PostCard,
GhostStyle GhostStyle
} from '@damillora/plachta'; } from '@damillora/plachta';
import { processPostHtml } from '$lib/content/postProcessor';
import type { Load } from '@sveltejs/kit';
import {
browseNextPost,
browsePrevPost,
browseRelatedPost,
readPost
} from '$lib/content/contentApi';
import { browser } from '$app/environment';
import PostSeo from '$lib/components/SEO/PostSEO.svelte'; import PostSeo from '$lib/components/SEO/PostSEO.svelte';
import { onMount } from 'svelte';
import { afterNavigate } from '$app/navigation';
import { generateSrcsetString } from '$lib/content/srcset';
let { data } = $props(); let { data } = $props();
</script> </script>