Skip to content

Commit

Permalink
✅[CHORE] 오타 수정 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
hryeong66 committed Jan 9, 2022
1 parent 841b6d3 commit 5340cda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct RecordLab: Codable {
let strokeType: Int
}

struct CommonRespose: Codable {
struct CommonResponse: Codable {
let status: Int
let message: String
let success: Bool
Expand Down
3 changes: 1 addition & 2 deletions Umpah-iOS/Umpah-iOS/Source/ViewControllers/MainVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,6 @@ extension MainVC: SelectedRangeDelegate {
self.baseTableView.reloadSections(IndexSet(1...1), with: .automatic)
self.cardView.currentState = self.currentState
}

present(vc, animated: true, completion: nil)
}

Expand Down Expand Up @@ -497,7 +496,7 @@ extension MainVC{
case .success(let result):
do{
print(result)
let reposneData = try result.map(CommonRespose.self)
let reposneData = try result.map(CommonResponse.self)
print("-----------response-----------")
print(reposneData)
print("------------------------------")
Expand Down

0 comments on commit 5340cda

Please sign in to comment.