Skip to content

Commit

Permalink
Fix: 누락된 PathVariable 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
us4c0d3 committed Nov 10, 2024
1 parent 46edefc commit 8c3fc5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public ResponseEntity<JeongsanApiResponse<Void>> savePersonalExpense(
@GetMapping("ipaid/{teamId}")
public ResponseEntity<JeongsanApiResponse<ExpenseResponse>> getExpensesIPaid(
@AuthenticationPrincipal Long memberId,
@PathVariable Long teamId
@PathVariable("teamId") Long teamId
) {
return JeongsanApiResponse.success(SuccessType.EXPENSE_LIST_LOADED,
expenseService.getExpensesIPaid(memberId, teamId));
Expand Down

0 comments on commit 8c3fc5b

Please sign in to comment.