Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
gudusol committed Oct 13, 2024
2 parents 5c374ef + c719a91 commit bef21a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Admin/components/OrderTable/OrderTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const OrderTable = ({ orders }: OrderTableProps) => {
const data = selectedData.map((order) => {
return {
주문번호: "", // blank
"보내는사람(지정)": "문성규", // 고정 값
"전화번호1(지정)": "01071177469", // 고정 값
"보내는사람(지정)": order.senderName,
"전화번호1(지정)": order.senderPhone,
"전화번호2(지정)": "", // blank
"우편번호(지정)": "63527", // 우편번호(지정)
"주소(지정)": "제주특별자치도 서귀포시 안덕면 덕수동로25번길 42-8", // 고정 값
Expand Down

0 comments on commit bef21a7

Please sign in to comment.