Skip to content

Commit

Permalink
[Hotfix] DateFormatter: yyyy로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minsangKang committed Dec 2, 2022
1 parent 2711589 commit 22a1f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project_Timer/Global/Extension/Date+Extension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ extension Date {
/// 0분0초의 Date로 변환
var zeroDate: Date {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "YYYY.MM.dd"
dateFormatter.dateFormat = "yyyy.MM.dd"
let transedDate: Date = dateFormatter.date(from: dateFormatter.string(from: self))!
return transedDate
}
Expand Down

0 comments on commit 22a1f39

Please sign in to comment.