Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/team-yello/YELLO-Android
Browse files Browse the repository at this point in the history
…into fix/#414-3rd-sprint-3rd-qa
  • Loading branch information
Marchbreeze committed Feb 26, 2024
2 parents e653016 + debfa76 commit f284d63
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import androidx.core.content.ContextCompat
import androidx.recyclerview.widget.RecyclerView
import com.el.yello.R
import com.el.yello.databinding.ItemAddFriendBinding
import com.el.yello.util.extension.loadUrlWithCircleCrop
import com.el.yello.util.extension.setImageOrBasicThumbnail
import com.example.domain.entity.onboarding.AddFriendListModel
import com.example.ui.extension.setOnSingleClickListener

Expand All @@ -15,7 +15,7 @@ class AddFriendViewHolder(

fun onBind(friendModel: AddFriendListModel.FriendModel, position: Int) {
with(binding) {
ivFriendProfile.loadUrlWithCircleCrop(friendModel.profileImage)
ivFriendProfile.setImageOrBasicThumbnail(friendModel.profileImage)
tvFriendName.text = friendModel.name
tvFriendDepartment.text = friendModel.groupName
btnFriendCheck.isSelected = friendModel.isSelected
Expand Down

0 comments on commit f284d63

Please sign in to comment.