Skip to content

Commit

Permalink
Merge pull request Expensify#13885 from daraksha-dk/daraksha-dk-fix-b…
Browse files Browse the repository at this point in the history
…order-for-workspace-admin

Fix: border bottom issue for admin
  • Loading branch information
tgolen authored Dec 29, 2022
2 parents 7836f32 + a710213 commit 0bde3f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/workspace/WorkspaceMembersPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class WorkspaceMembersPage extends React.Component {
<OfflineWithFeedback errorRowStyles={[styles.peopleRowBorderBottom]} onClose={() => this.dismissError(item)} pendingAction={item.pendingAction} errors={item.errors}>
<Hoverable onHoverIn={() => this.willTooltipShowForLogin(item.login, true)} onHoverOut={() => this.setState({showTooltipForLogin: ''})}>
<TouchableOpacity
style={[styles.peopleRow, !item.errors && styles.peopleRowBorderBottom, !canBeRemoved && styles.cursorDisabled]}
style={[styles.peopleRow, _.isEmpty(item.errors) && styles.peopleRowBorderBottom, !canBeRemoved && styles.cursorDisabled]}
onPress={() => this.toggleUser(item.login, item.pendingAction)}
activeOpacity={0.7}
>
Expand Down

0 comments on commit 0bde3f8

Please sign in to comment.