From 08a1a806ef68328c6b3213b5c50eb047497327a7 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 17 Jul 2025 23:03:55 +0300 Subject: Fix checkmark overflow in profile card (#8612) --- src/components/ProfileCard.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'src/components/ProfileCard.tsx') diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index 4aec74880..e01c27655 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -1,4 +1,4 @@ -import React from 'react' +import {useMemo} from 'react' import {type GestureResponderEvent, View} from 'react-native' import { moderateProfile, @@ -277,7 +277,13 @@ export function Name({ {name} @@ -345,7 +351,7 @@ export function Description({ numberOfLines?: number }) { const profile = useProfileShadow(profileUnshadowed) - const rt = React.useMemo(() => { + const rt = useMemo(() => { if (!('description' in profile)) return const rt = new RichTextApi({text: profile.description || ''}) rt.detectFacetsWithoutResolution() -- cgit 1.4.1