From 8fcd36e30a52298b984ccb8ee810d82ffbdfdfb2 Mon Sep 17 00:00:00 2001 From: Alvaro <110414366+alvaro-signal@users.noreply.github.com> Date: Tue, 4 Oct 2022 15:39:29 -0600 Subject: [PATCH] Removed Note to Self story ring --- ts/components/conversation/ConversationHeader.tsx | 3 ++- ts/components/conversation/ConversationHero.tsx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ts/components/conversation/ConversationHeader.tsx b/ts/components/conversation/ConversationHeader.tsx index 8e8c083bbf9e..26bc31193033 100644 --- a/ts/components/conversation/ConversationHeader.tsx +++ b/ts/components/conversation/ConversationHeader.tsx @@ -243,7 +243,8 @@ export class ConversationHeader extends React.Component { 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} diff --git a/ts/components/conversation/ConversationHero.tsx b/ts/components/conversation/ConversationHero.tsx index 42d8d53e673f..6667168b5845 100644 --- a/ts/components/conversation/ConversationHero.tsx +++ b/ts/components/conversation/ConversationHero.tsx @@ -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} />