diff --git a/README.md b/README.md index 6ec6174..bf4c91f 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,11 @@ 시청자들이 이를 시청하고 채팅과 후원으로 소통하는 서비스입니다. ``` -## 소개 영상 (예정) +## 소개 영상 + + + +https://youtu.be/gUTpnhFRUK8 ## | Service Architecture ⚙ diff --git a/src/modal/DonationModal.js b/src/modal/DonationModal.js index 706acf3..809ac8d 100644 --- a/src/modal/DonationModal.js +++ b/src/modal/DonationModal.js @@ -110,11 +110,14 @@ const Donation = ({ closeModal, streamerId }) => { const fetchData = async () => { try { - const response = await axios.get(`${process.env.REACT_APP_API_URL}/api/point`, { - headers: { - Authorization: accessToken, - }, - }); + const response = await axios.get( + `${process.env.REACT_APP_API_URL}/api/point`, + { + headers: { + Authorization: accessToken, + }, + } + ); setPointData(response.data); console.log('GET 요청 성공:', response.data); } catch (error) { @@ -125,8 +128,8 @@ const Donation = ({ closeModal, streamerId }) => { const handleDonation = async (e) => { e.preventDefault(); - if (amount < 0) { - alert('음수로는 후원할 수 없어요'); + if (amount <= 0) { + alert('0이나 음수로는 후원할 수 없어요'); return; }