diff --git a/src/components/Graph/ProductPriceGraph.jsx b/src/components/Graph/ProductPriceGraph.jsx
index 9a32c80..d53d38b 100644
--- a/src/components/Graph/ProductPriceGraph.jsx
+++ b/src/components/Graph/ProductPriceGraph.jsx
@@ -80,7 +80,7 @@ const ProductPriceGraph = ({ id }) => {
>
- 최근 6개월간 최저 {minPriceString}원
+ 최근 6개월간 최저가 {minPriceString}원
);
diff --git a/src/pages/PostDetail/index.jsx b/src/pages/PostDetail/index.jsx
index 6027552..a98a805 100644
--- a/src/pages/PostDetail/index.jsx
+++ b/src/pages/PostDetail/index.jsx
@@ -11,20 +11,9 @@ import ProductPriceGraph from '../../components/Graph/ProductPriceGraph';
import { SubTitle } from '../../styles/Common.styles';
import ButtonArea from '../../components/ButtonArea';
import Button from '../../components/Button';
-import Spacer from '../../components/Spacer';
import { useOverlay } from '@toss/use-overlay';
-import { Dialog, Slide } from '@mui/material';
-import React, { Suspense } from 'react';
-
-const Transition = React.forwardRef(function Transition(props, ref) {
- return (
-
- );
-});
+import { Suspense } from 'react';
+import CustomDialog from '../../components/CustomDialog';
const PostDetail = () => {
const overlay = useOverlay();
@@ -32,29 +21,15 @@ const PostDetail = () => {
const { data } = usePost(id);
const openOverlay = () => {
overlay.open(({ isOpen, close }) => (
-
+
));
};