diff --git a/frontend/components/application/applicationLayout/timeline/Timeline.component.tsx b/frontend/components/application/applicationLayout/timeline/Timeline.component.tsx
index 0fcbe1c2..c66fee68 100644
--- a/frontend/components/application/applicationLayout/timeline/Timeline.component.tsx
+++ b/frontend/components/application/applicationLayout/timeline/Timeline.component.tsx
@@ -29,12 +29,9 @@ export const TimelineCell = ({
return (
-
{`${startTime.getMonth()}월 ${startTime.getDate()}일 (${convertDay(
- startTime.getDay()
- )})`}
+
{`${
+ startTime.getMonth() + 1
+ }월 ${startTime.getDate()}일 (${convertDay(startTime.getDay())})`}
{dates.map((date, index) => (
{
{dateString}
diff --git a/frontend/src/constants/application/28.ts b/frontend/src/constants/application/28.ts
index f026abd1..e6e84436 100644
--- a/frontend/src/constants/application/28.ts
+++ b/frontend/src/constants/application/28.ts
@@ -178,16 +178,16 @@ export const APPLICATION_TIMELINE: ApplicationTimeline = {
seperate: 30,
time: [
{
- startTime: new Date(2024, 9, 23, 10, 0, 0),
- endTime: new Date(2024, 9, 23, 20, 30, 0),
+ startTime: new Date(2024, 8, 23, 10, 0, 0),
+ endTime: new Date(2024, 8, 23, 20, 30, 0),
},
{
- startTime: new Date(2024, 9, 24, 10, 0, 0),
- endTime: new Date(2024, 9, 24, 20, 30, 0),
+ startTime: new Date(2024, 8, 24, 10, 0, 0),
+ endTime: new Date(2024, 8, 24, 20, 30, 0),
},
{
- startTime: new Date(2024, 9, 25, 10, 0, 0),
- endTime: new Date(2024, 9, 25, 20, 30, 0),
+ startTime: new Date(2024, 8, 25, 10, 0, 0),
+ endTime: new Date(2024, 8, 25, 20, 30, 0),
},
],
disableTime: [],