Skip to content

Commit

Permalink
Fix conditional rendering logic
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Dec 27, 2023
1 parent 4d7cc3a commit 0502b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/workspace/WorkspacesListRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function WorkspacesListRow({
)}
</View>
<View style={[styles.flexRow, isWide && styles.flex1, styles.gap2, isNarrow && styles.mr5, styles.alignItemsCenter]}>
{ownerDetails && (
{!!ownerDetails && (
<>
<Avatar
source={ownerDetails.avatar}
Expand Down

0 comments on commit 0502b00

Please sign in to comment.