Skip to content

Commit

Permalink
fix: align conversation and desc
Browse files Browse the repository at this point in the history
Signed-off-by: clegirar <clemntgirard@gmail.com>
  • Loading branch information
clegirar committed Mar 11, 2021
1 parent c897e7e commit bb9e71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/packages/components/main/home/Conversations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const ConversationsItem: React.FC<ConversationsItemProps> = (props) => {
}}
>
<Text numberOfLines={1} style={[text.size.medium, text.color.black]}>
{(fake && 'FAKE - ') || ''} {userDisplayName}
{fake ? `FAKE - ${userDisplayName}` : userDisplayName}
</Text>
</View>
{/* Timestamp and unread count */}
Expand Down

0 comments on commit bb9e71c

Please sign in to comment.