Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
chaeseungyun committed Nov 22, 2024
2 parents 1c84193 + 9f3fb13 commit fda00da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/uploadFile/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ export const uploadFiles = (formData: FormData) => accessClient.post('/OWNERS/up
headers: { 'Content-Type': 'multipart/form-data' },
});

export const getOwnerUrl = (fileName: File) => accessClient.post<FileResponse>('/owner/upload/url', fileName);
export const getOwnerUrl = (fileName: File) => accessClient.post<FileResponse>('/owners/upload/url', fileName);
1 change: 1 addition & 0 deletions src/page/MyShopPage/components/EditShopInfoModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export default function EditShopInfoModal({
open_time: day.open_time,
close_time: day.close_time,
})),
main_category_id: shopInfo.shop_categories.map((category) => category.id)[0],
},
});

Expand Down

0 comments on commit fda00da

Please sign in to comment.