Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ class CourseEditVC: UIViewController {
private let editButton = CustomButton(title: "완료").setEnabled(false)

private lazy var scrollView = UIScrollView()
private let mapImageView = UIImageView().then {
$0.image = UIImage(named: "")
}
private let mapImageView = UIImageView()
private lazy var courseTitleTextField = UITextField().then {
$0.attributedPlaceholder = NSAttributedString(
string: "글 제목",
Expand Down Expand Up @@ -388,7 +386,7 @@ extension CourseEditVC {
case .success(let result):
let status = result.statusCode
if 200..<300 ~= status {
showToast(message: "게시글 수정이 완료되었어요")
self.showToast(message: "게시글 수정이 완료되었어요")
}
if status >= 400 {
print("400 error")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ extension ActivityRecordDetailVC {
let status = result.statusCode
if 200..<300 ~= status {
print("제목 수정 성공")
showToast(message: "제목 수정이 완료되었어요")
self.showToast(message: "제목 수정이 완료되었어요")
}
if status >= 400 {
print("400 error")
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.