diff --git a/YELLO-iOS/YELLO-iOS/Presentation/Profile/Main/Cell/MyFriendSkeletonTableViewCell.swift b/YELLO-iOS/YELLO-iOS/Presentation/Profile/Main/Cell/MyFriendSkeletonTableViewCell.swift index 27a65da9..9b328613 100644 --- a/YELLO-iOS/YELLO-iOS/Presentation/Profile/Main/Cell/MyFriendSkeletonTableViewCell.swift +++ b/YELLO-iOS/YELLO-iOS/Presentation/Profile/Main/Cell/MyFriendSkeletonTableViewCell.swift @@ -95,8 +95,10 @@ extension MyFriendSkeletonTableViewCell { } func showShimmer() { - self.profileImageView.animateShimmer() - self.nameLabel.animateShimmer() - self.schoolLabel.animateShimmer() + let shimmerArray = [profileImageView, nameLabel, schoolLabel] + + shimmerArray.forEach { + $0.animateShimmer() + } } }