fix(mobile): email warp (#3791) (#3792)

This commit is contained in:
Ethan Xu 2025-05-23 20:54:56 +08:00 committed by GitHub
parent ade8280620
commit 75e0c06b05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -156,7 +156,11 @@ const AccountLinker: FC<{
label={provider2LabelMap[provider]}
icon={provider2IconMap[provider]}
postfix={
<Text ellipsizeMode="tail" className="text-secondary-label mr-1 max-w-[100px]">
<Text
ellipsizeMode="tail"
numberOfLines={1}
className="text-secondary-label mr-1 max-w-[150px]"
>
{account?.profile?.email || account?.profile?.name || ""}
</Text>
}