Skip to content

Commit

Permalink
fix: user pic is not editable for scim users (#2759)
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamadJaara committed Mar 8, 2024
1 parent e4b3623 commit e2aeaad
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -205,8 +205,7 @@ private fun SelfUserProfileContent(
userName = userName,
teamName = teamName,
onUserProfileClick = onChangeUserProfilePicture,
editableState = if (state.isReadOnlyAccount) EditableState.NotEditable
else EditableState.IsEditable(onEditClick)
editableState = EditableState.IsEditable(onEditClick)
)
}
if (!state.teamName.isNullOrBlank()) {
Expand Down

0 comments on commit e2aeaad

Please sign in to comment.