Skip to content

Commit

Permalink
feat : 리뷰 확인
Browse files Browse the repository at this point in the history
  • Loading branch information
hwan129 committed Jun 8, 2024
1 parent 59acf18 commit 79bd42c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
3 changes: 1 addition & 2 deletions src/components/review/reviewList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export default function ReviewList() {
setStoreName(res.storeName);
setLocalNumberAddress(res.localNumberAddress);
setphoneNumber(res.phoneNumber);
console.log(res);
// console.log(res);
})
.catch((error) => {
console.error("Error occurred while fetching:", error);
Expand Down Expand Up @@ -309,7 +309,6 @@ export default function ReviewList() {
<ReCount>
{review.reviewCountList && review.reviewCountList[0]}
</ReCount>
<Writeimg />
{/* <WriteBtn onClick={}>리뷰 쓰기</WriteBtn> */}

<Writeimg
Expand Down
2 changes: 1 addition & 1 deletion src/components/review/sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const Sidebar = ({ width = 300, children }) => {
}
};

console.log(reviewUiState, completeReview);
// console.log(reviewUiState, completeReview);

return (
// container
Expand Down
8 changes: 2 additions & 6 deletions src/routes/mypage/MyPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ const CharContainer = styled.div`
`;

const CharImg = styled.div`
width: 228px;
height: 228px;
border-radius: 100%;
background-color: white;
margin-top: 87px;
`;

Expand Down Expand Up @@ -221,7 +217,7 @@ export default function MyPage() {
{
<img
src={characterMyPageImage}
style={{ width: "60%", marginLeft: "45px" }}
style={{ width: "228px", height: "228px" }}
alt="Character"
/>
}
Expand All @@ -242,7 +238,7 @@ export default function MyPage() {
<RContent>리뷰 내역</RContent>
{data.map((review, index) => (
<ReviewBox key={index}>
<Name>{review.title} </Name>
<Name>{review.title} > </Name>
<Detail>
<Fire>불점 {review.reviewSpicyLevel}</Fire>
</Detail>
Expand Down

0 comments on commit 79bd42c

Please sign in to comment.