diff --git a/src/components/Common/Date/Date.tsx b/src/components/Common/Date/Date.tsx index e4b9670..7379a83 100644 --- a/src/components/Common/Date/Date.tsx +++ b/src/components/Common/Date/Date.tsx @@ -5,8 +5,18 @@ import { format, parseISO } from "date-fns"; const Date = ({ dateString, size }: DateProps) => { const date = parseISO(dateString); return ( - - {dateString != "" ? format(date, "yyyy/MM/dd HH:mm") : ""} + + {dateString != "" + ? format( + date.setTime(date.getTime() - 9 * 60 * 60 * 1000), + "yyyy/MM/dd HH:mm" + ) + : ""} ); };