diff options
Diffstat (limited to 'Hutch/Views/Lookup/UserProfileView.swift')
| -rw-r--r-- | Hutch/Views/Lookup/UserProfileView.swift | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Hutch/Views/Lookup/UserProfileView.swift b/Hutch/Views/Lookup/UserProfileView.swift index b467c63..b694738 100644 --- a/Hutch/Views/Lookup/UserProfileView.swift +++ b/Hutch/Views/Lookup/UserProfileView.swift @@ -74,9 +74,12 @@ struct UserProfileView: View { } } - if let bio = user.bio { + if let bio = user.bio, !bio.isEmpty { Section("Bio") { - Text(bio) + Text(profileBioAttributedString(bio)) + .frame(maxWidth: .infinity, alignment: .leading) + .tint(.accentColor) + .textSelection(.enabled) } } |
