Skip to content

Commit 42c3d55

Browse files
authored
Merge pull request #245 from prgrms-web-devcourse-final-project/fix#244
[Fix] 지갑 이동 수정
2 parents 7b5ed47 + 1723fd9 commit 42c3d55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/backend/domain/payment/controller/ApiV1PaymentMethodController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public ResponseEntity<Void> confirmCallback(
191191
paymentMethodService.saveOrUpdateBillingKey(memberId, confirm);
192192

193193
// 4) 성공 → FE /wallet 으로 리다이렉트
194-
String location = frontendBaseUrl + "/wallet?billing=success";
194+
String location = frontendBaseUrl + "/wallet";
195195
return ResponseEntity.status(302).header("Location", location).build();
196196

197197
} catch (Exception e) {

0 commit comments

Comments
 (0)