Commit de1d0e2

HPCesia <me@hpcesia.com>
2025-04-28 07:04:29
style: correct import spell
1 parent 1d8e6de
Changed files (1)
src/pages/[...page].astro
@@ -1,7 +1,7 @@
 ---
 import { asideConfig, commentConfig, siteConfig } from '@/config';
 import ProfileCard from '@components/aside/ProfileCard.astro';
-import ResentCommentsCard from '@components/aside/RecentCommentsCard.vue';
+import RecentCommentsCard from '@components/aside/RecentCommentsCard.vue';
 import SiteInfoCard from '@components/aside/SiteInfoCard.astro';
 import CategoryBar from '@components/misc/CategoryBar.astro';
 import PostsPage from '@components/PostsPage.astro';
@@ -38,7 +38,7 @@ const categories = await getCategories();
   <Fragment slot="aside-sticky">
     {
       commentConfig.enable && asideConfig.recentComment.enable && (
-        <ResentCommentsCard client:visible />
+        <RecentCommentsCard client:visible />
       )
     }
   </Fragment>