diff options
author | Logan Rosen <loganrosen@gmail.com> | 2023-06-22 12:40:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 12:40:32 -0400 |
commit | 9b19a95e638b2a5379560b5ffb27c423ad9a2e4e (patch) | |
tree | 90f35e751116815beffd587901415a9a94ca7eb7 /src/view/com/profile/ProfileCard.tsx | |
parent | 180697b66b038459236a023c712709651cba48c1 (diff) | |
download | voidsky-9b19a95e638b2a5379560b5ffb27c423ad9a2e4e.tar.zst |
Bump @types/react to ^18 and adjust types (#889)
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} |