Show story rings around avatars in send story modal

This commit is contained in:
Josh Perez 2023-03-07 21:15:25 -05:00 committed by GitHub
parent 78e3120d1a
commit d2322de4a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 71 additions and 45 deletions

View file

@ -8,6 +8,7 @@ import Measure from 'react-measure';
import { noop } from 'lodash';
import type { ConversationType } from '../state/ducks/conversations';
import type { ConversationWithStoriesType } from '../state/selectors/conversations';
import type { LocalizerType } from '../types/Util';
import type { PreferredBadgeSelectorType } from '../state/selectors/badges';
import type { Row } from './ConversationList';
@ -43,7 +44,7 @@ import { strictAssert } from '../util/assert';
export type PropsType = {
candidateConversations: Array<ConversationType>;
distributionLists: Array<StoryDistributionListWithMembersDataType>;
groupStories: Array<ConversationType>;
groupStories: Array<ConversationWithStoriesType>;
signalConnections: Array<ConversationType>;
getPreferredBadge: PreferredBadgeSelectorType;
hideStoriesSettings: () => unknown;