diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-10-30 17:44:58 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-10-30 17:44:58 -0700 |
commit | 9826e7c7b99b16d77534473d822642c7cbf1f3fe (patch) | |
tree | 2cfeceb31d2c98b104ca616a2d2579793d612818 /src/view/com/util/UserInfoText.tsx | |
parent | 871ded193ce64b3d586d4a07b326e5ee10f388b9 (diff) | |
download | voidsky-9826e7c7b99b16d77534473d822642c7cbf1f3fe.tar.zst |
Rename component to match new behavior
Diffstat (limited to 'src/view/com/util/UserInfoText.tsx')
-rw-r--r-- | src/view/com/util/UserInfoText.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/util/UserInfoText.tsx b/src/view/com/util/UserInfoText.tsx index 695711b2a..e4ca981d9 100644 --- a/src/view/com/util/UserInfoText.tsx +++ b/src/view/com/util/UserInfoText.tsx @@ -1,7 +1,7 @@ import React, {useState, useEffect} from 'react' import {AppBskyActorGetProfile as GetProfile} from '@atproto/api' import {StyleProp, StyleSheet, TextStyle} from 'react-native' -import {DesktopWebTextLink} from './Link' +import {TextLinkOnWebOnly} from './Link' import {Text} from './text/Text' import {LoadingPlaceholder} from './LoadingPlaceholder' import {useStores} from 'state/index' @@ -65,7 +65,7 @@ export function UserInfoText({ ) } else if (profile) { inner = ( - <DesktopWebTextLink + <TextLinkOnWebOnly type={type} style={style} lineHeight={1.2} |