Removed Note to Self story ring

This commit is contained in:
Alvaro 2022-10-04 15:39:29 -06:00 committed by GitHub
parent 3e73b30a9d
commit 8fcd36e30a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -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}

View File

@ -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}
/>