diff --git a/Data/Sources/Mapper/DateFormatters.swift b/Data/Sources/Mapper/DateFormatters.swift index 531faf2..8dd836c 100644 --- a/Data/Sources/Mapper/DateFormatters.swift +++ b/Data/Sources/Mapper/DateFormatters.swift @@ -12,7 +12,7 @@ enum DateFormatters { let f = DateFormatter() f.calendar = .init(identifier: .gregorian) f.locale = Locale(identifier: "en_US_POSIX") - f.timeZone = TimeZone(secondsFromGMT: 0) + f.timeZone = .current f.dateFormat = "yyyy-MM-dd" return f }()