Skip to content

Commit

Permalink
♻️ :: [#237] profileImage ?? "" -> profileImage
Browse files Browse the repository at this point in the history
  • Loading branch information
junseopark0331 authored and uuuunseo committed Apr 21, 2024
1 parent 3ccab83 commit 8626375
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extension FetchMassageRankListResponseDTO.MassageRankResponseDTO {
stuNum: stuNum,
memberName: memberName,
gender: gender,
profileImage: profileImage ?? ""
profileImage: profileImage
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extension FetchSelfStudyRankListResponseDTO.SelfStudyRankResponseDTO {
memberName: memberName,
gender: gender,
selfStudyCheck: selfStudyCheck,
profileImage: profileImage ?? ""
profileImage: profileImage
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private extension SelfStudyStore {
memberName: $0.memberName,
gender: $0.gender,
selfStudyCheck: isChecked,
profileImage: $0.profileImage ?? ""
profileImage: $0.profileImage
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import BaseFeature
import Combine
import DesignSystem
import MSGLayout
import Nuke
import SelfStudyDomainInterface
import UIKit

Expand Down Expand Up @@ -72,7 +71,7 @@ final class SelfStudyCell: BaseTableViewCell<SelfStudyRankModel> {
gender: model.gender == .man ? .man : .woman,
stuNum: model.stuNum,
isChecked: model.selfStudyCheck,
profileImage: model.profileImage ?? ""
profileImage: model.profileImage
)
)
self.medalImageView.image = self.rankToImage(rank: model.rank)
Expand Down

0 comments on commit 8626375

Please sign in to comment.