diff options
Diffstat (limited to 'src/view/com/profile/ProfileCard.tsx')
-rw-r--r-- | src/view/com/profile/ProfileCard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileCard.tsx b/src/view/com/profile/ProfileCard.tsx index 50b9f199c..2dfc7ad30 100644 --- a/src/view/com/profile/ProfileCard.tsx +++ b/src/view/com/profile/ProfileCard.tsx @@ -100,7 +100,7 @@ export const ProfileCard = observer( {profile.description ? ( <View style={styles.details}> <Text style={pal.text} numberOfLines={4}> - {profile.description} + {profile.description as string} </Text> </View> ) : undefined} |