feat: 팔로워 리스트

- 프로필 이미지를 터치하면 프로필 다이얼로그 표시
This commit is contained in:
Yu Sung
2025-06-13 19:56:44 +09:00
parent 24c97dbe51
commit a815bcfbf4
4 changed files with 30 additions and 0 deletions

View File

@@ -117,4 +117,9 @@ final class FollowerListViewModel: ObservableObject {
}
.store(in: &subscription)
}
func removeMember(memberId: Int) {
totalCount -= 1
followerListItems.removeAll { $0.userId == memberId }
}
}