Skip to content

Commit

Permalink
fix/#190 지각꾸물이 서비스타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
youz2me committed Jul 16, 2024
1 parent 6796e34 commit d569b93
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions KkuMulKum.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -897,10 +897,10 @@
DD8626502C4606A300E4F980 /* ReadyStatus */ = {
isa = PBXGroup;
children = (
DD8626512C4606A300E4F980 /* ViewModel */,
DD8626542C4606A300E4F980 /* View */,
DD86265C2C4606A300E4F980 /* Service */,
DD86265E2C4606A300E4F980 /* ViewController */,
DD8626512C4606A300E4F980 /* ViewModel */,
DD8626542C4606A300E4F980 /* View */,
);
path = ReadyStatus;
sourceTree = "<group>";
Expand Down
7 changes: 3 additions & 4 deletions KkuMulKum/Source/Promise/Tardy/ViewModel/TardyViewModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,15 @@ class TardyViewModel {

// MARK: Property

let tardyService: MockTardyService
var isPastDue: ObservablePattern<Bool>
var hasTardy: ObservablePattern<Bool>


// MARK: Initialize

init(
isPastDue: ObservablePattern<Bool>,
hasTardy: ObservablePattern<Bool>
) {
init(tardyService: MockTardyService, isPastDue: ObservablePattern<Bool>, hasTardy: ObservablePattern<Bool>) {
self.tardyService = tardyService
self.isPastDue = isPastDue
self.hasTardy = hasTardy
}
Expand Down

0 comments on commit d569b93

Please sign in to comment.