Skip to content

Commit

Permalink
[feat] #35 it 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyunniiii committed Jun 7, 2024
1 parent f7e11af commit e667a11
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ fun HomeScreen(
.fillMaxSize()
.background(Color.White)
) {
state.profileList.partition { it.id == 1 }.let { (myProfiles, friendProfiles) ->
state.profileList.partition { profileModel ->
profileModel.id == 1
}.let { (myProfiles, friendProfiles) ->
items(myProfiles) { myProfile ->
ProfileContainer(profileModel = myProfile)
}
Expand Down

0 comments on commit e667a11

Please sign in to comment.