-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor : 전체 점검 후 수정 #145
Comments
orderComplete 페이지에서, 주문한 상품 내역이 안나오는 오류를 수정했습니다.
수정 이전 useEffect(() => {
// 랜딩 시 details 저장
matchedTransactionDetails()
// 장바구니에 담겨있던 제품들을 삭제
removeCartItemsByUser(userInfo)
}, []) 기존 코드는 비동기 완료 이전에 cartItems가 삭제되면서 matchedTransactionDetails 호출 중에 비교할 cartItems가 빈 배열로 나타남. matchedTransactionDetails 완료 이후에 removeCartItemsByUser가 실행되도록 then메서드 사용. 수정 이후
|
오....빠르게 잡아내셨네여...! 고생하셨습니닷!! |
orderComplete 페이지에서, 주문내역 확인하기 버튼의 |
ㅜㅜ
The text was updated successfully, but these errors were encountered: