Removed Note to Self story ring
This commit is contained in:
parent
3e73b30a9d
commit
8fcd36e30a
2 changed files with 4 additions and 2 deletions
|
@ -243,7 +243,8 @@ export class ConversationHeader extends React.Component<PropsType, StateType> {
|
|||
profileName={profileName}
|
||||
sharedGroupNames={sharedGroupNames}
|
||||
size={AvatarSize.THIRTY_TWO}
|
||||
storyRing={hasStories}
|
||||
// user may have stories, but we don't show that on Note to Self conversation
|
||||
storyRing={isMe ? undefined : hasStories}
|
||||
theme={theme}
|
||||
title={title}
|
||||
unblurredAvatarPath={unblurredAvatarPath}
|
||||
|
|
|
@ -179,7 +179,8 @@ export const ConversationHero = ({
|
|||
profileName={profileName}
|
||||
sharedGroupNames={sharedGroupNames}
|
||||
size={112}
|
||||
storyRing={hasStories}
|
||||
// user may have stories, but we don't show that on Note to Self conversation
|
||||
storyRing={isMe ? undefined : hasStories}
|
||||
theme={theme}
|
||||
title={title}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue