Skip to content

Commit

Permalink
Merge pull request #61 from PLADI-ALM/feat/PDW-5-office-select
Browse files Browse the repository at this point in the history
[PDW-5/Fix] 시작 시간 설정 안되는 오류 수정
  • Loading branch information
psyeon1120 authored Oct 11, 2023
2 parents 3b8b61f + 98b8ee8 commit 4c3c736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/booking/selectOffice/SelectOffice.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function SelectOffice(props) {
const searchOffice = () => {
OfficesAxios.get(`?date=${date}&startTime=${startTime}&endTime=${endTime}`)
.then((Response) => { setOffices(Response.data.data.content) })
.catch((Error) => { alert(Error) })
.catch((Error) => { alert(Error.response.data.message) })
}

useEffect(() => {
Expand Down

0 comments on commit 4c3c736

Please sign in to comment.