Skip to content

Commit

Permalink
Merge pull request #124 from FC-InnerCircle/feature/#123-store-api-ca…
Browse files Browse the repository at this point in the history
…ll-parameter-change

fix: 음식점 조회 파라미터 변경
  • Loading branch information
kichul7493 authored Oct 12, 2024
2 parents 601bcbd + ee31416 commit 9b1ce24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/features/store/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export interface StoreListRequest {

export const getStoreList = async (req: StoreListRequest) => {
const res = await axiosInst.post(`/store`, {
...req,
latitude: req.address.latitude,
longitude: req.address.longitude,
})
const { page, size, totalCount } = res.data

Expand Down

0 comments on commit 9b1ce24

Please sign in to comment.