Skip to content

Commit

Permalink
[Feat] 앱스토어 업로드용
Browse files Browse the repository at this point in the history
  • Loading branch information
JYPjoy committed Dec 1, 2023
1 parent 3d85b21 commit 6048e21
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions Codingdong-iOS/Codingdong-iOS/Model/Fable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ final class FableData {
}


let fables = [FableData(title: "해님달님", isRead: true),
FableData(title: "콩쥐팥쥐", isRead: false),
FableData(title: "별주부전", isRead: false)]
//let fables = [FableData(title: "해님달님", isRead: true),
// FableData(title: "콩쥐팥쥐", isRead: false),
// FableData(title: "별주부전", isRead: false)]

let fables = [FableData(title: "해님달님", isRead: true)]
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ final class MyBookShelfViewController: UIViewController, ConfigUI {
$0.top.equalTo(storyTitle.snp.bottom).offset(16)
$0.left.equalToSuperview().offset(16)
$0.right.equalToSuperview().offset(-16)
$0.height.equalTo(180)
$0.height.equalTo(60)
}

cookieContainer.snp.makeConstraints {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ final class ReviewViewModel: ReviewViewModelRepresentable {
var sendRoute: PassthroughSubject<UIViewController, Never> = .init()

func endStory() {
CddDBService().updateFable(FableData(title: "콩쥐팥쥐", isRead: true))
//CddDBService().updateFable(FableData(title: "콩쥐팥쥐", isRead: true))
}
}

0 comments on commit 6048e21

Please sign in to comment.