Skip to content

Commit

Permalink
[Fix] #217 - 리뷰 셀 사진 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yungu0010 committed Jul 22, 2022
1 parent 4b09074 commit d71125f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class ReviewDetailVC: UIViewController {
private var reviewData: [ReviewCellViewModel] = [] { didSet {
fetchCutStringList()
fetchExpendStateList()
reviewCV.reloadData()
}}
private var reviewServerData: [ReviewDataModel] = []
private var blogReviewData: [BlogReviewDataModel] = []
Expand Down Expand Up @@ -423,7 +422,6 @@ extension ReviewDetailVC: UICollectionViewDataSource {
} else if selectedCustomSegment == 1 {
URLSchemeManager.shared.loadSafariApp(blogLink: blogReviewData[indexPath.row].blogURL)
}

}
}

Expand Down Expand Up @@ -454,7 +452,7 @@ extension ReviewDetailVC: UICollectionViewDelegateFlowLayout {
return CGSize(width: cellWidth, height: cellHeight)
} else {
let cellWidth = width * 335/375
let cellHeight = cellWidth * 158/335
let cellHeight = cellWidth * 156/335
return CGSize(width: cellWidth, height: cellHeight)
}
}
Expand Down

0 comments on commit d71125f

Please sign in to comment.