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 f3091a2 commit 22f993bCopy full SHA for 22f993b
ts/components/conversation/ContactName/ContactName.tsx
@@ -246,7 +246,10 @@ export const ContactName = ({
246
const shouldShowShortenPkAsName = !displayName;
247
248
const shouldShowPubkey =
249
- !shouldShowShortenPkAsName && isPublic && isShowPubkeyCtx(contactNameContext, isBlinded);
+ !shouldShowShortenPkAsName &&
250
+ !isMe &&
251
+ isPublic &&
252
+ isShowPubkeyCtx(contactNameContext, isBlinded);
253
const boldProfileName = isBoldProfileNameCtx(contactNameContext);
254
const forceSingleLine = isForceSingleLineCtx(contactNameContext);
255
0 commit comments