diff --git a/project/Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/InfoPlist.swift b/project/Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/InfoPlist.swift index 67f38fcb..2049e446 100644 --- a/project/Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/InfoPlist.swift +++ b/project/Plugins/ConfigurationPlugin/ProjectDescriptionHelpers/InfoPlist.swift @@ -13,7 +13,7 @@ public enum IdleInfoPlist { "CFBundleDisplayName": "$(BUNDLE_DISPLAY_NAME)", - "CFBundleShortVersionString" : "1.0.1", + "CFBundleShortVersionString" : "1.0.2", "NSAppTransportSecurity" : [ "NSAllowsArbitraryLoads" : true @@ -40,6 +40,9 @@ public enum IdleInfoPlist { "UIInterfaceOrientationPortrait" ], + // 다크모드 금지 설정 + "UIUserInterfaceStyle" : "Light", + // iPad 지원하는 화면 모드 "UISupportedInterfaceOrientations~ipad" : [ "UIInterfaceOrientationPortrait" diff --git a/project/Projects/Data/DataSource/DTO/RecruitmentPost/NativeRecruitmentPostDetailDTO.swift b/project/Projects/Data/DataSource/DTO/RecruitmentPost/NativeRecruitmentPostDetailDTO.swift index 769833fa..26a65f78 100644 --- a/project/Projects/Data/DataSource/DTO/RecruitmentPost/NativeRecruitmentPostDetailDTO.swift +++ b/project/Projects/Data/DataSource/DTO/RecruitmentPost/NativeRecruitmentPostDetailDTO.swift @@ -115,7 +115,6 @@ public struct NativeRecruitmentPostDetailDTO: EntityRepresentable { if let applyTime { dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss" applyDate = dateFormatter.date(from: applyTime) - print(applyTime) } return .init( diff --git a/project/Projects/Data/DataSource/DTO/RecruitmentPost/RecuritmentPostListForWorkerDTO.swift b/project/Projects/Data/DataSource/DTO/RecruitmentPost/RecuritmentPostListForWorkerDTO.swift index 8aee86ae..666af994 100644 --- a/project/Projects/Data/DataSource/DTO/RecruitmentPost/RecuritmentPostListForWorkerDTO.swift +++ b/project/Projects/Data/DataSource/DTO/RecruitmentPost/RecuritmentPostListForWorkerDTO.swift @@ -126,7 +126,10 @@ public struct NativeRecruitmentPostForWorkerDTO: EntityRepresentable { dateFormatter.dateFormat = "yyyy-MM-dd" let deadlineDate = self.applyDeadline != nil ? dateFormatter.date(from: self.applyDeadline!) : nil - let applyDate = self.applyTime != nil ? dateFormatter.date(from: self.applyDeadline!) : nil + + dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss" + + let applyDate = self.applyTime != nil ? dateFormatter.date(from: self.applyTime!) : nil let iso8601Formatter = ISO8601DateFormatter() var createdDate: Date? diff --git a/project/Projects/Presentation/Feature/Worker/Sources/View/RecruitmentPost/LikedAndApplied/SubVC/WorkerPagablePostBoardVC.swift b/project/Projects/Presentation/Feature/Worker/Sources/View/RecruitmentPost/LikedAndApplied/SubVC/WorkerPagablePostBoardVC.swift index c28c76de..0088c070 100644 --- a/project/Projects/Presentation/Feature/Worker/Sources/View/RecruitmentPost/LikedAndApplied/SubVC/WorkerPagablePostBoardVC.swift +++ b/project/Projects/Presentation/Feature/Worker/Sources/View/RecruitmentPost/LikedAndApplied/SubVC/WorkerPagablePostBoardVC.swift @@ -98,7 +98,7 @@ public class WorkerPagablePostBoardVC: BaseViewController { .postBoardData? .drive(onNext: { [weak self] (isRefreshed, cellData) in guard let self else { return } - self.postData = postData + self.postData = cellData self.postTableView.reloadData() isPaging = false