Skip to content

Commit

Permalink
fix(FE): 카드 등록시 금액 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SUMMERLOVE7 committed Feb 23, 2023
1 parent 3eec84f commit 76fa3cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/PostPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const sendCardData = async () => {
brandName: gifticonData.brandName,
barcode: gifticonData.barcode,
expiresAtInString: `${year}-${month}-${day}`,
price: '5000',
price: gifticonData.price, //'5000',
};

formData.append(
Expand Down

0 comments on commit 76fa3cd

Please sign in to comment.