Fixes showing the list of people button when the user is blocked

This commit is contained in:
Vitor Pamplona
2025-11-05 19:02:45 -05:00
parent 43942891b7
commit c2c3442b74
@@ -62,7 +62,6 @@ fun ProfileActions(
ShowUserButton { accountViewModel.showUser(baseUser.pubkeyHex) } ShowUserButton { accountViewModel.showUser(baseUser.pubkeyHex) }
} else { } else {
DisplayFollowUnfollowButton(baseUser, accountViewModel) DisplayFollowUnfollowButton(baseUser, accountViewModel)
}
TextButton( TextButton(
onClick = { nav.nav(Route.PeopleListManagement(baseUser.pubkeyHex)) }, onClick = { nav.nav(Route.PeopleListManagement(baseUser.pubkeyHex)) },
@@ -76,3 +75,4 @@ fun ProfileActions(
) )
} }
} }
}