diff --git a/apps/web/src/app/community/[boardCode]/[postId]/CommentSection.tsx b/apps/web/src/app/community/[boardCode]/[postId]/CommentSection.tsx index d14d3605..e1024dff 100644 --- a/apps/web/src/app/community/[boardCode]/[postId]/CommentSection.tsx +++ b/apps/web/src/app/community/[boardCode]/[postId]/CommentSection.tsx @@ -5,12 +5,10 @@ import { useMemo, useState } from "react"; import { useDeleteComment } from "@/apis/community"; import useBlockCommunityUser from "@/app/community/_hooks/useBlockCommunityUser"; import Dropdown from "@/components/ui/Dropdown"; -import Image from "@/components/ui/FallbackImage"; -import { DEFAULT_PROFILE_IMAGE } from "@/constants/profile"; +import ProfileWithBadge from "@/components/ui/ProfileWithBadge"; import useReportedPostsStore from "@/lib/zustand/useReportedPostsStore"; import { IconMoreVertFilled, IconSubComment } from "@/public/svgs"; import type { Comment as CommentType, CommunityUser } from "@/types/community"; -import { normalizeImageUrlToUploadCdn } from "@/utils/cdnUrl"; import { convertISODateToDateTime } from "@/utils/datetimeUtils"; import CommentInput from "./CommentInput"; @@ -152,15 +150,7 @@ const Comment = ({ const CommentProfile = ({ user }: { user: CommunityUser }) => { return (