Skip to content

Commit

Permalink
Merge pull request #43 from AlongTheBlue/alongCourses
Browse files Browse the repository at this point in the history
fix: 좌표수정
  • Loading branch information
yeilkk authored Oct 14, 2024
2 parents 7290449 + 2fa92c8 commit 5f007aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/AlongBluesPlan.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ const AlongBluesPlan = ({user}) => {
id: index,
title: index === 0 ? selectedBlue.title : course.title,
address: course.address,
xMap: course.x,
yMap: course.y,
xMap: course.lng,
yMap: course.lat,
category: course.category,
})),
};
Expand All @@ -52,7 +52,6 @@ const AlongBluesPlan = ({user}) => {
const response = await axios.post(
`${API_BASE_URL}/blueCourse/create`,postData,{
headers: {
"Content-Type": "multipart/form-data",
"Authorization": uid
},
}
Expand Down

0 comments on commit 5f007aa

Please sign in to comment.