Skip to content

Commit

Permalink
chore: ledger 삭제하는 코드를 주석 처리한다.
Browse files Browse the repository at this point in the history
  • Loading branch information
pott-101 committed Aug 7, 2024
1 parent 304a447 commit a2296d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public void delete(Long userId, Long agencyId) {
Agency agency = agencyRepository.findById(agencyId)
.orElseThrow(() -> new NotFoundException(ErrorCode.AGENCY_NOT_FOUND));

ledgerService.deleteLedger(agencyId);
// ledgerService.deleteLedger(agencyId);

agencyRepository.delete(agency);
}
Expand Down

0 comments on commit a2296d1

Please sign in to comment.