Skip to content

Commit

Permalink
πŸ› fix: API 쑰회 λ‚ μ§œ μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyyena committed Jan 5, 2024
1 parent 60cb9f8 commit 476cc31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public ApiResponse<Object> createStamp(
@RequestBody StampRequest stampRequest
) {
LocalDate today = LocalDate.now();
LocalDate yesterday = today.minusDays(1);
LocalDate yesterday = today.minusDays(2);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd", Locale.KOREA);
String formattedToday = today.format(formatter);
String formattedYesterday = yesterday.format(formatter);
Expand Down

0 comments on commit 476cc31

Please sign in to comment.