We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4986f0c commit 6ebcb40Copy full SHA for 6ebcb40
packages/app/features/profile/screen.tsx
@@ -141,12 +141,10 @@ export function ProfileScreen({ sendid: propSendid }: ProfileScreenProps) {
141
) : null
142
}
143
ListHeaderComponent={
144
- Boolean(otherUserProfile) && user?.id !== otherUserProfile?.id ? (
145
- <SendButton
146
- identifier={otherUserProfile?.tag ?? otherUserProfile?.sendid ?? ''}
147
- idType={otherUserProfile?.tag ? 'tag' : 'sendid'}
148
- />
149
- ) : null
+ <SendButton
+ identifier={otherUserProfile?.tag ?? otherUserProfile?.sendid ?? ''}
+ idType={otherUserProfile?.tag ? 'tag' : 'sendid'}
+ />
150
151
inverted={true}
152
showsVerticalScrollIndicator={false}
0 commit comments