diff --git a/src/app/[locale]/(protected)/board/[boardCode]/[postId]/page.tsx b/src/app/[locale]/(protected)/board/[boardCode]/[postId]/page.tsx
index 54817992..6db5ccd0 100644
--- a/src/app/[locale]/(protected)/board/[boardCode]/[postId]/page.tsx
+++ b/src/app/[locale]/(protected)/board/[boardCode]/[postId]/page.tsx
@@ -7,7 +7,7 @@
import { useParams, useRouter } from 'next/navigation';
import { useEffect, useState } from 'react';
-import { ContentLoadingSpinner } from '@/components/ui/loading-spinner';
+import { DetailPageSkeleton } from '@/components/ui/skeleton';
import { BoardDetail } from '@/components/board/BoardDetail';
import { getPost } from '@/components/board/actions';
import type { Post, Comment } from '@/components/board/types';
@@ -60,7 +60,7 @@ export default function BoardDetailPage() {
}, [boardCode, postId, router]);
if (isLoading) {
- return