about summary refs log tree commit diff
path: root/src/screens/Messages/Conversation/index.tsx
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-05-02 08:54:12 -0700
committerGitHub <noreply@github.com>2024-05-02 08:54:12 -0700
commite977c99c9604211a9047a6b5a20c0c5c0d9c98f7 (patch)
treef58d4b5bbfa321f50d19193764df688cee728177 /src/screens/Messages/Conversation/index.tsx
parentc2062753c5e687dca7a7dea6aa874af13c9567c3 (diff)
downloadvoidsky-e977c99c9604211a9047a6b5a20c0c5c0d9c98f7.tar.zst
[Clipclops] rm `<Trans>` from header (#3818)
Diffstat (limited to 'src/screens/Messages/Conversation/index.tsx')
-rw-r--r--src/screens/Messages/Conversation/index.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/screens/Messages/Conversation/index.tsx b/src/screens/Messages/Conversation/index.tsx
index f5663fdcb..4e692317f 100644
--- a/src/screens/Messages/Conversation/index.tsx
+++ b/src/screens/Messages/Conversation/index.tsx
@@ -3,7 +3,7 @@ import {TouchableOpacity, View} from 'react-native'
 import {AppBskyActorDefs} from '@atproto/api'
 import {ChatBskyConvoDefs} from '@atproto-labs/api'
 import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
-import {msg, Trans} from '@lingui/macro'
+import {msg} from '@lingui/macro'
 import {useLingui} from '@lingui/react'
 import {useNavigation} from '@react-navigation/native'
 import {NativeStackScreenProps} from '@react-navigation/native-stack'
@@ -131,9 +131,7 @@ let Header = ({
       )}
       <View style={[a.align_center, a.gap_sm]}>
         <PreviewableUserAvatar size={32} profile={profile} />
-        <Text style={[a.text_lg, a.font_bold]}>
-          <Trans>{profile.displayName}</Trans>
-        </Text>
+        <Text style={[a.text_lg, a.font_bold]}>{profile.displayName}</Text>
       </View>
       {service.convo ? (
         <ConvoMenu