문제점 : 모바일 버전 디테일 페이지에서는 header 컴포넌트에서 게시글 삭제 기능이 있는데 데스크탑 버전에서는 postContent 컴포넌트에서 직접 게시글 삭제가 되어야 한다. 똑같은 로직을 그대로 가져와서 쓰는데 헤더에서는 되고 posrContent 컴포넌트에선 안됨'use client';import { BackButtonIcon, MeatballMenuIcon, PencilIcon, RecruitmentIcon, TrashBinIcon } from '@/components/icons/Icons';import { useGetPostById } from '@/hooks/useGetPostById';import { useUserStore } from '@/utils/store/userStore';im..