Skip to content

Commit

Permalink
[✅ test] 모바일 결제 시 성공에도 결제 실패 스낵바 뜨는 문제 해결 위한 조건문 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeyooon committed Apr 16, 2024
1 parent 3f788e3 commit 74acb4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/challenge/process/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default function ParticipantProcess() {
console.error(error);
});
}
} else {
} else if (errorMsg !== null && errorMsg !== '') {
router
.push({
pathname: '/home',
Expand Down

0 comments on commit 74acb4f

Please sign in to comment.