Skip to content

Commit

Permalink
fix: ChatRoomUsersImageView shuffle 로직 제거로 유저 이미지 변동 오류 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
bumssooooo committed Dec 9, 2022
1 parent 524d4dd commit cab0926
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ final class ChatRoomUsersImageView: UIView {
}

func configure(imageURLs: [URL]) {
zip(imageURLs.shuffled(), roundImageViews).forEach { imageURL, roundImageView in
zip(imageURLs, roundImageViews).forEach { imageURL, roundImageView in
roundImageView.load(url: imageURL)
}
roundImageViews.enumerated().forEach { index, roundImageView in
Expand Down

0 comments on commit cab0926

Please sign in to comment.