Skip to content

Commit

Permalink
[UPDATE] API요청 파트의 time 형식 UTC로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun1211 committed Jan 10, 2025
1 parent 5914142 commit c34e77e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/components/TimePicker.css
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,7 @@ input:checked + .slider:before {
width: 0;
background: transparent;
}




3 changes: 3 additions & 0 deletions src/components/TimePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,7 @@ const TimePicker = ({ startTime, endTime, setStartTime, setEndTime }) => {
};





export default TimePicker;
2 changes: 2 additions & 0 deletions src/pages/MonthView.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ import MyPage from './MyPage';
setIsFocused(false);
};



// 날짜 클릭 핸들러
const handleDateChange = (date) => {
const dateString = moment(date).format("YYYY-MM-DD");
Expand Down
2 changes: 2 additions & 0 deletions src/pages/individualCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ const IndividualCalendar = () => {
// console.log("이거슨 key:", index);
// console.log("이거슨 id:", schedule.id);



return { date, key: index, id: schedule.id };
});

Expand Down
5 changes: 4 additions & 1 deletion src/pages/invite.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ const Invite = () => {
setResponseMessage('서버 오류가 발생했습니다.');
}
}
};
};



return (
<div className="modal">
<div className="modal-header">
Expand Down

0 comments on commit c34e77e

Please sign in to comment.