diff --git a/.maestro/tests/room/room.yaml b/.maestro/tests/room/room.yaml index b29ad58be49..0f7ecfa8aeb 100644 --- a/.maestro/tests/room/room.yaml +++ b/.maestro/tests/room/room.yaml @@ -29,11 +29,77 @@ tags: env: message: ${output.randomMessage} +# should send a message in thread and verify avatar tap navigates to RoomInfoView +- extendedWaitUntil: + visible: + text: ${output.randomMessage} + timeout: 60000 +- longPressOn: + id: 'message-content-${output.randomMessage}' +- waitForAnimationToEnd: + timeout: 1000 +- extendedWaitUntil: + visible: + id: action-sheet + timeout: 60000 +- extendedWaitUntil: + visible: + id: message-actions-reply-in-thread + timeout: 60000 +- tapOn: + id: message-actions-reply-in-thread +- extendedWaitUntil: + visible: + id: room-view + timeout: 60000 +- extendedWaitUntil: + visible: + id: message-composer-input-thread + timeout: 60000 +- tapOn: + id: message-composer-input-thread +- inputText: 'thread-reply-message' +- tapOn: + id: message-composer-send +- extendedWaitUntil: + visible: + text: '.*thread-reply-message.*' + timeout: 60000 + +- runFlow: '../../helpers/go-back.yaml' + +# tap on the avatar of the thread reply — should open RoomInfoView +- tapOn: + id: 'avatar-${output.user.username}' +- extendedWaitUntil: + visible: + id: room-info-view-username + timeout: 60000 +- extendedWaitUntil: + visible: + text: .*${'@'+output.user.username}.* + timeout: 60000 +- waitForAnimationToEnd: + timeout: 2000 + +# assert thread view did NOT reopen on top of RoomInfoView +- assertNotVisible: + id: message-composer-input-thread + +# go-back is causing 2 times back execution, using navigate-to-room after going back +- runFlow: '../../helpers/go-back.yaml' +- runFlow: + file: '../../helpers/navigate-to-room.yaml' + env: + ROOM: ${output.room.name} + # should show and tap on emoji autocomplete - extendedWaitUntil: visible: id: message-composer-input timeout: 60000 +- tapOn: + id: message-composer-input - inputText: ':joy' - extendedWaitUntil: visible: diff --git a/app/containers/Avatar/Avatar.tsx b/app/containers/Avatar/Avatar.tsx index 089730b0112..34ce2f4277f 100644 --- a/app/containers/Avatar/Avatar.tsx +++ b/app/containers/Avatar/Avatar.tsx @@ -35,7 +35,8 @@ const Avatar = React.memo( roomAvatarExternalProviderUrl, cdnPrefix, accessibilityLabel, - accessible = true + accessible = true, + testID }: IAvatar) => { if ((!text && !avatar && !emoji && !rid) || !server) { return null; @@ -108,7 +109,7 @@ const Avatar = React.memo( accessible={accessible} accessibilityLabel={!onPress ? avatarAccessibilityLabel : undefined} style={[avatarStyle, style]} - testID='avatar'> + testID={testID ?? 'avatar'}> {image} {children} diff --git a/app/containers/Avatar/AvatarContainer.tsx b/app/containers/Avatar/AvatarContainer.tsx index 4e54161efec..0775225d869 100644 --- a/app/containers/Avatar/AvatarContainer.tsx +++ b/app/containers/Avatar/AvatarContainer.tsx @@ -50,6 +50,7 @@ const AvatarContainer = ({ return ( ; disabled?: boolean; + android_rippleColor?: string; } const KeyboardRectButton = withKeyboardFocus(RectButton); -const Touch = React.forwardRef( +const Touch = React.forwardRef( ( { children, onPress, underlayColor, + android_rippleColor, accessible, accessibilityLabel, accessibilityHint, @@ -81,7 +83,7 @@ const Touch = React.forwardRef( onPress={onPress} activeOpacity={1} underlayColor={underlayColor || colors.surfaceNeutral} - rippleColor={colors.surfaceNeutral} + rippleColor={android_rippleColor || colors.surfaceNeutral} focusable={!disabled} canBeFocused={!disabled} style={[rectButtonStyle, marginStyles, { backgroundColor, borderRadius }]} diff --git a/app/containers/message/Message.tsx b/app/containers/message/Message.tsx index 5c6a28168f8..bc3f1819b75 100644 --- a/app/containers/message/Message.tsx +++ b/app/containers/message/Message.tsx @@ -26,7 +26,7 @@ import MessageTime from './Time'; import { useResponsiveLayout } from '../../lib/hooks/useResponsiveLayout/useResponsiveLayout'; import Quote from './Components/Attachments/Quote'; import translationLanguages from '../../lib/constants/translationLanguages'; -import Touch from './Touch'; +import Touch from '../Touch'; const MessageInner = React.memo((props: IMessageInner) => { const { isLargeFontScale } = useResponsiveLayout(); diff --git a/app/containers/message/Touch.tsx b/app/containers/message/Touch.tsx deleted file mode 100644 index 0fa8b91817e..00000000000 --- a/app/containers/message/Touch.tsx +++ /dev/null @@ -1,110 +0,0 @@ -import React from 'react'; -import { - View, - StyleSheet, - type ViewStyle, - type StyleProp, - type AccessibilityActionEvent, - type AccessibilityActionInfo, - TouchableOpacity, - TouchableHighlight, - type TouchableWithoutFeedbackProps -} from 'react-native'; -import { withKeyboardFocus } from 'react-native-external-keyboard'; - -import { useTheme } from '../../theme'; -import { isIOS } from '../../lib/methods/helpers'; - -export interface ITouchProps extends TouchableWithoutFeedbackProps { - children: React.ReactNode; - accessible?: boolean; - accessibilityLabel?: string; - accessibilityHint?: string; - accessibilityActions?: AccessibilityActionInfo[]; - onAccessibilityAction?: (event: AccessibilityActionEvent) => void; - testID?: string; - rectButtonStyle?: StyleProp; - enabled?: boolean; - android_rippleColor?: string; -} - -const Component = isIOS ? TouchableOpacity : TouchableHighlight; -const KeyboardComponent = withKeyboardFocus(Component); - -const Touch = React.forwardRef( - ( - { - children, - onPress, - android_rippleColor, - accessible, - accessibilityLabel, - accessibilityHint, - accessibilityActions, - onAccessibilityAction, - style, - rectButtonStyle, - enabled = true, - ...props - }, - ref - ) => { - const { colors } = useTheme(); - // The background color must be applied to the RectButton, not the View. - // If set on the View, the touch opacity animation won't work properly. - const flattenedStyle = StyleSheet.flatten(style) || {}; - const { - borderRadius, - backgroundColor, - marginBottom, - margin, - marginLeft, - marginVertical, - marginHorizontal, - marginEnd, - marginRight, - marginStart, - marginTop, - ...viewStyle - } = flattenedStyle; - // The margin should be applied to the parent component. - // If set on the View, it will create an internal margin inside the RectButton. - const marginStyles = { - margin, - marginBottom, - marginLeft, - marginVertical, - marginHorizontal, - marginEnd, - marginRight, - marginStart, - marginTop - }; - const touchableProps = isIOS ? {} : { underlayColor: android_rippleColor ?? colors.surfaceNeutral, activeOpacity: 1 }; - - return ( - - - {children} - - - ); - } -); - -export default Touch; diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 2ac6fabdccd..4851b49be4a 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -19,7 +19,7 @@ exports[`Story Snapshots: Archived should match snapshot 1`] = ` orderKey="«r0»" > - + @@ -139,7 +149,7 @@ exports[`Story Snapshots: Archived should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -481,7 +491,7 @@ exports[`Story Snapshots: ArchivedLargeFont should match snapshot 1`] = ` orderKey="«r1»" > - + @@ -601,7 +621,7 @@ exports[`Story Snapshots: ArchivedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -964,51 +984,61 @@ exports[`Story Snapshots: AttachmentWithTextAndLink should match snapshot 1`] = ] } > - + @@ -1063,7 +1093,7 @@ exports[`Story Snapshots: AttachmentWithTextAndLink should match snapshot 1`] = }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -1725,51 +1755,61 @@ exports[`Story Snapshots: AttachmentWithTextAndLinkLargeFont should match snapsh ] } > - + @@ -1824,7 +1864,7 @@ exports[`Story Snapshots: AttachmentWithTextAndLinkLargeFont should match snapsh }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -2486,51 +2526,61 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` ] } > - + @@ -2585,7 +2635,7 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -2935,51 +2985,61 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` ] } > - + @@ -3034,7 +3094,7 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -3384,51 +3444,61 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` ] } > - + @@ -3483,7 +3553,7 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -3825,51 +3895,61 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` ] } > - + @@ -3924,7 +4004,7 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -4282,51 +4362,61 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` ] } > - + @@ -4381,7 +4471,7 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -4752,51 +4842,61 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` ] } > - + @@ -4851,7 +4951,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -5201,51 +5301,61 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` ] } > - + @@ -5300,7 +5410,7 @@ exports[`Story Snapshots: Basic should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -5663,51 +5773,61 @@ exports[`Story Snapshots: BasicLargeFont should match snapshot 1`] = ` ] } > - + @@ -5762,7 +5882,7 @@ exports[`Story Snapshots: BasicLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -6112,51 +6232,61 @@ exports[`Story Snapshots: BasicLargeFont should match snapshot 1`] = ` ] } > - + @@ -6211,7 +6341,7 @@ exports[`Story Snapshots: BasicLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -6574,51 +6704,61 @@ exports[`Story Snapshots: BlockQuote should match snapshot 1`] = ` ] } > - + @@ -6673,7 +6813,7 @@ exports[`Story Snapshots: BlockQuote should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -7054,51 +7194,61 @@ exports[`Story Snapshots: BlockQuote should match snapshot 1`] = ` ] } > - + @@ -7155,7 +7305,7 @@ Testing block quote" }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -7597,51 +7747,61 @@ exports[`Story Snapshots: BlockQuoteLargeFont should match snapshot 1`] = ` ] } > - + @@ -7696,7 +7856,7 @@ exports[`Story Snapshots: BlockQuoteLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -8077,51 +8237,61 @@ exports[`Story Snapshots: BlockQuoteLargeFont should match snapshot 1`] = ` ] } > - + @@ -8178,7 +8348,7 @@ Testing block quote" }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -8620,51 +8790,61 @@ exports[`Story Snapshots: Broadcast should match snapshot 1`] = ` ] } > - + @@ -8719,7 +8899,7 @@ exports[`Story Snapshots: Broadcast should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -9202,51 +9382,61 @@ exports[`Story Snapshots: BroadcastLargeFont should match snapshot 1`] = ` ] } > - + @@ -9301,7 +9491,7 @@ exports[`Story Snapshots: BroadcastLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -9784,51 +9974,61 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` ] } > - + @@ -9883,7 +10083,7 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -10385,51 +10585,61 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` ] } > - + @@ -10484,7 +10694,7 @@ exports[`Story Snapshots: CollapsedAttachments should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -11201,51 +11411,61 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` ] } > - + @@ -11300,7 +11520,7 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -11802,51 +12022,61 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` ] } > - + @@ -11901,7 +12131,7 @@ exports[`Story Snapshots: CollapsedAttachmentsLargeFont should match snapshot 1` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -12618,51 +12848,61 @@ exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1` ] } > - + @@ -12717,7 +12957,7 @@ exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -13221,51 +13461,61 @@ exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1` ] } > - + @@ -13320,7 +13570,7 @@ exports[`Story Snapshots: CollapsibleAttachmentWithText should match snapshot 1` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -14178,51 +14428,61 @@ exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match sn ] } > - + @@ -14277,7 +14537,7 @@ exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match sn }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -14781,51 +15041,61 @@ exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match sn ] } > - + @@ -14880,7 +15150,7 @@ exports[`Story Snapshots: CollapsibleAttachmentWithTextLargeFont should match sn }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -15738,51 +16008,61 @@ exports[`Story Snapshots: ColoredAttachments should match snapshot 1`] = ` ] } > - + @@ -15837,7 +16117,7 @@ exports[`Story Snapshots: ColoredAttachments should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -16962,51 +17242,61 @@ exports[`Story Snapshots: ColoredAttachmentsLargeFont should match snapshot 1`] ] } > - + @@ -17061,7 +17351,7 @@ exports[`Story Snapshots: ColoredAttachmentsLargeFont should match snapshot 1`] }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -18186,51 +18476,61 @@ exports[`Story Snapshots: CustomFields should match snapshot 1`] = ` ] } > - + @@ -18285,7 +18585,7 @@ exports[`Story Snapshots: CustomFields should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -18990,51 +19290,61 @@ exports[`Story Snapshots: CustomFields should match snapshot 1`] = ` ] } > - + @@ -19089,7 +19399,7 @@ exports[`Story Snapshots: CustomFields should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -20065,51 +20375,61 @@ exports[`Story Snapshots: CustomFieldsLargeFont should match snapshot 1`] = ` ] } > - + @@ -20164,7 +20484,7 @@ exports[`Story Snapshots: CustomFieldsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -20869,51 +21189,61 @@ exports[`Story Snapshots: CustomFieldsLargeFont should match snapshot 1`] = ` ] } > - + @@ -20968,7 +21298,7 @@ exports[`Story Snapshots: CustomFieldsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -21944,51 +22274,61 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` ] } > - + @@ -22043,7 +22383,7 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -22455,51 +22795,61 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` ] } > - + @@ -22554,7 +22904,7 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -22948,51 +23298,61 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` ] } > - + @@ -23129,7 +23489,7 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` - + @@ -23164,51 +23524,61 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` ] } > - + @@ -23263,7 +23633,7 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -23670,51 +24040,61 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` ] } > - + @@ -23769,7 +24149,7 @@ exports[`Story Snapshots: DateAndUnreadSeparators should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -24132,51 +24512,61 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot ] } > - + @@ -24231,7 +24621,7 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -24643,51 +25033,61 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot ] } > - + @@ -24742,7 +25142,7 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -25136,51 +25536,61 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot ] } > - + @@ -25317,7 +25727,7 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot - + @@ -25352,51 +25762,61 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot ] } > - + @@ -25451,7 +25871,7 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -25858,51 +26278,61 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot ] } > - + @@ -25957,7 +26387,7 @@ exports[`Story Snapshots: DateAndUnreadSeparatorsLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -26320,51 +26750,61 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` ] } > - + @@ -26419,7 +26859,7 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -26890,51 +27330,61 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` ] } > - + @@ -26989,7 +27439,7 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -27462,51 +27912,61 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` ] } > - + @@ -27561,7 +28021,7 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -28034,51 +28494,61 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` ] } > - + @@ -28133,7 +28603,7 @@ exports[`Story Snapshots: Discussion should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -28619,51 +29089,61 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` ] } > - + @@ -28718,7 +29198,7 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -29189,51 +29669,61 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` ] } > - + @@ -29288,7 +29778,7 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -29761,51 +30251,61 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` ] } > - + @@ -29860,7 +30360,7 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -30333,51 +30833,61 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` ] } > - + @@ -30432,7 +30942,7 @@ exports[`Story Snapshots: DiscussionLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -30918,51 +31428,61 @@ exports[`Story Snapshots: Edited should match snapshot 1`] = ` ] } > - + @@ -31017,7 +31537,7 @@ exports[`Story Snapshots: Edited should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -31403,51 +31923,61 @@ exports[`Story Snapshots: Edited should match snapshot 1`] = ` ] } > - + @@ -31620,7 +32150,7 @@ exports[`Story Snapshots: Edited should match snapshot 1`] = ` - + @@ -31668,51 +32198,61 @@ exports[`Story Snapshots: EditedLargeFont should match snapshot 1`] = ` ] } > - + @@ -31767,7 +32307,7 @@ exports[`Story Snapshots: EditedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -32153,51 +32693,61 @@ exports[`Story Snapshots: EditedLargeFont should match snapshot 1`] = ` ] } > - + @@ -32370,7 +32920,7 @@ exports[`Story Snapshots: EditedLargeFont should match snapshot 1`] = ` - + @@ -32418,51 +32968,61 @@ exports[`Story Snapshots: Editing should match snapshot 1`] = ` ] } > - + @@ -32517,7 +33077,7 @@ exports[`Story Snapshots: Editing should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -32880,51 +33440,61 @@ exports[`Story Snapshots: EditingLargeFont should match snapshot 1`] = ` ] } > - + @@ -32979,7 +33549,7 @@ exports[`Story Snapshots: EditingLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -33342,51 +33912,61 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` ] } > - + @@ -33441,7 +34021,7 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -33790,51 +34370,61 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` ] } > - + @@ -33889,7 +34479,7 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -34219,51 +34809,61 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` ] } > - + @@ -34318,7 +34918,7 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -34761,51 +35361,61 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` ] } > - + @@ -34860,7 +35470,7 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -35215,51 +35825,61 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` ] } > - + @@ -35314,7 +35934,7 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -35688,51 +36308,61 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` ] } > - + @@ -35787,7 +36417,7 @@ exports[`Story Snapshots: Emojis should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -36207,51 +36837,61 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` ] } > - + @@ -36306,7 +36946,7 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -36655,51 +37295,61 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` ] } > - + @@ -36754,7 +37404,7 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -37084,51 +37734,61 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` ] } > - + @@ -37183,7 +37843,7 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -37626,51 +38286,61 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` ] } > - + @@ -37725,7 +38395,7 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -38080,51 +38750,61 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` ] } > - + @@ -38179,7 +38859,7 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -38553,51 +39233,61 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` ] } > - + @@ -38652,7 +39342,7 @@ exports[`Story Snapshots: EmojisLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -39072,51 +39762,61 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` ] } > - + @@ -39171,7 +39871,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -39593,51 +40293,61 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` ] } > - + @@ -39846,7 +40556,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` - + @@ -39881,51 +40591,61 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` ] } > - + @@ -39980,7 +40700,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -40843,51 +41563,61 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` ] } > - + @@ -41056,7 +41786,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -41248,7 +41978,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` orderKey="«r29»" > - + @@ -41368,7 +42108,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -41795,51 +42535,61 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` ] } > - + @@ -41894,7 +42644,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -42339,7 +43089,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -42927,7 +43687,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -43379,51 +44139,61 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` ] } > - + @@ -43662,7 +44432,7 @@ exports[`Story Snapshots: Encrypted should match snapshot 1`] = ` - + @@ -43710,51 +44480,61 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` ] } > - + @@ -43809,7 +44589,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -44231,51 +45011,61 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` ] } > - + @@ -44484,7 +45274,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` - + @@ -44519,51 +45309,61 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` ] } > - + @@ -44618,7 +45418,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -45481,51 +46281,61 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` ] } > - + @@ -45694,7 +46504,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -45886,7 +46696,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` orderKey="«r2i»" > - + @@ -46006,7 +46826,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -46433,51 +47253,61 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` ] } > - + @@ -46532,7 +47362,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -46977,7 +47807,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -47565,7 +48405,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -48017,51 +48857,61 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` ] } > - + @@ -48300,7 +49150,7 @@ exports[`Story Snapshots: EncryptedLargeFont should match snapshot 1`] = ` - + @@ -48371,7 +49221,7 @@ exports[`Story Snapshots: Error should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -49771,7 +50631,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -50260,51 +51120,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] ] } > - + @@ -50359,7 +51229,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -50848,51 +51718,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] ] } > - + @@ -50947,7 +51827,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -51436,51 +52316,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] ] } > - + @@ -51535,7 +52425,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -52101,51 +52991,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] ] } > - + @@ -52493,7 +53393,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenames should match snapshot 1`] - + @@ -52541,51 +53441,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna ] } > - + @@ -52640,7 +53550,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -53129,51 +54039,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna ] } > - + @@ -53228,7 +54148,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -53717,51 +54637,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna ] } > - + @@ -53816,7 +54746,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -54305,51 +55235,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna ] } > - + @@ -54404,7 +55344,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -54970,51 +55910,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna ] } > - + @@ -55362,7 +56312,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna - + @@ -55397,51 +56347,61 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna ] } > - + @@ -55496,7 +56456,7 @@ exports[`Story Snapshots: FileAttachmentsWithFilenamesLargeFont should match sna }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -56153,51 +57113,61 @@ exports[`Story Snapshots: FullName should match snapshot 1`] = ` ] } > - + @@ -56252,7 +57222,7 @@ exports[`Story Snapshots: FullName should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -56615,51 +57585,61 @@ exports[`Story Snapshots: FullNameLargeFont should match snapshot 1`] = ` ] } > - + @@ -56714,7 +57694,7 @@ exports[`Story Snapshots: FullNameLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -57077,51 +58057,61 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` ] } > - + @@ -57176,7 +58166,7 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -57526,51 +58516,61 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` ] } > - + @@ -57625,7 +58625,7 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -57975,51 +58975,61 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` ] } > - + @@ -58156,7 +59166,7 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` - + @@ -58191,51 +59201,61 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` ] } > - + @@ -58372,7 +59392,7 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` - + @@ -58407,51 +59427,61 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` ] } > - + @@ -58506,7 +59536,7 @@ exports[`Story Snapshots: GroupedMessages should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -58869,51 +59899,61 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` ] } > - + @@ -58968,7 +60008,7 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -59318,51 +60358,61 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` ] } > - + @@ -59417,7 +60467,7 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -59767,51 +60817,61 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` ] } > - + @@ -59948,7 +61008,7 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` - + @@ -59983,51 +61043,61 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` ] } > - + @@ -60164,7 +61234,7 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` - + @@ -60199,51 +61269,61 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` ] } > - + @@ -60298,7 +61378,7 @@ exports[`Story Snapshots: GroupedMessagesLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -60661,51 +61741,61 @@ exports[`Story Snapshots: Ignored should match snapshot 1`] = ` ] } > - + @@ -60757,7 +61847,7 @@ exports[`Story Snapshots: Ignored should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -60979,51 +62069,61 @@ exports[`Story Snapshots: IgnoredLargeFont should match snapshot 1`] = ` ] } > - + @@ -61075,7 +62175,7 @@ exports[`Story Snapshots: IgnoredLargeFont should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -61297,51 +62397,61 @@ exports[`Story Snapshots: InlineKatex should match snapshot 1`] = ` ] } > - + @@ -61396,7 +62506,7 @@ exports[`Story Snapshots: InlineKatex should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -61745,51 +62855,61 @@ exports[`Story Snapshots: InlineKatexLargeFont should match snapshot 1`] = ` ] } > - + @@ -61844,7 +62964,7 @@ exports[`Story Snapshots: InlineKatexLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -62193,51 +63313,61 @@ exports[`Story Snapshots: Katex should match snapshot 1`] = ` ] } > - + @@ -62292,7 +63422,7 @@ exports[`Story Snapshots: Katex should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -62609,51 +63739,61 @@ exports[`Story Snapshots: KatexArray should match snapshot 1`] = ` ] } > - + @@ -62708,7 +63848,7 @@ exports[`Story Snapshots: KatexArray should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -63025,51 +64165,61 @@ exports[`Story Snapshots: KatexArrayLargeFont should match snapshot 1`] = ` ] } > - + @@ -63124,7 +64274,7 @@ exports[`Story Snapshots: KatexArrayLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -63441,51 +64591,61 @@ exports[`Story Snapshots: KatexLargeFont should match snapshot 1`] = ` ] } > - + @@ -63540,7 +64700,7 @@ exports[`Story Snapshots: KatexLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -63857,51 +65017,61 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` ] } > - + @@ -63960,7 +65130,7 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -64488,51 +65658,61 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` ] } > - + @@ -64589,7 +65769,7 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -65069,51 +66249,61 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` ] } > - + @@ -65168,7 +66358,7 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -65560,51 +66750,61 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` ] } > - + @@ -65783,7 +66983,7 @@ exports[`Story Snapshots: Lists should match snapshot 1`] = ` - + @@ -65831,51 +67031,61 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` ] } > - + @@ -65934,7 +67144,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -66462,51 +67672,61 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` ] } > - + @@ -66563,7 +67783,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -67043,51 +68263,61 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` ] } > - + @@ -67142,7 +68372,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -67534,51 +68764,61 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` ] } > - + @@ -67757,7 +68997,7 @@ exports[`Story Snapshots: ListsLargeFont should match snapshot 1`] = ` - + @@ -67805,51 +69045,61 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` ] } > - + @@ -67904,7 +69154,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -68254,51 +69504,61 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` ] } > - + @@ -68353,7 +69613,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -68739,51 +69999,61 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` ] } > - + @@ -68839,7 +70109,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -69224,51 +70494,61 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` ] } > - + @@ -69323,7 +70603,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -69768,7 +71048,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -70285,7 +71575,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -70666,51 +71956,61 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` ] } > - + @@ -70765,7 +72065,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -71241,7 +72541,7 @@ exports[`Story Snapshots: LongNameUser should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -72699,7 +74009,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -73049,51 +74359,61 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` ] } > - + @@ -73148,7 +74468,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -73534,51 +74854,61 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` ] } > - + @@ -73634,7 +74964,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -74019,51 +75349,61 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` ] } > - + @@ -74118,7 +75458,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -74563,7 +75903,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -75080,7 +76430,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -75461,51 +76811,61 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` ] } > - + @@ -75560,7 +76920,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -76036,7 +77396,7 @@ exports[`Story Snapshots: LongNameUserLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -77494,7 +78864,7 @@ exports[`Story Snapshots: Mentions should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -78023,51 +79393,61 @@ exports[`Story Snapshots: Mentions should match snapshot 1`] = ` ] } > - + @@ -78122,7 +79502,7 @@ exports[`Story Snapshots: Mentions should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -78646,51 +80026,61 @@ exports[`Story Snapshots: MentionsLargeFont should match snapshot 1`] = ` ] } > - + @@ -78745,7 +80135,7 @@ exports[`Story Snapshots: MentionsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -79274,51 +80664,61 @@ exports[`Story Snapshots: MentionsLargeFont should match snapshot 1`] = ` ] } > - + @@ -79373,7 +80773,7 @@ exports[`Story Snapshots: MentionsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -79897,51 +81297,61 @@ exports[`Story Snapshots: Message should match snapshot 1`] = ` ] } > - + @@ -79996,7 +81406,7 @@ exports[`Story Snapshots: Message should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -80299,51 +81709,61 @@ exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1` ] } > - + @@ -80398,7 +81818,7 @@ exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -80884,51 +82304,61 @@ exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1` ] } > - + @@ -80983,7 +82413,7 @@ exports[`Story Snapshots: MessageWithNestedReplyAndFile should match snapshot 1` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -81693,51 +83123,61 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` ] } > - + @@ -81792,7 +83232,7 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -82173,51 +83613,61 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` ] } > - + @@ -82385,7 +83835,7 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` - + @@ -82420,51 +83870,61 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` ] } > - + @@ -82519,7 +83979,7 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -82900,51 +84360,61 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` ] } > - + @@ -83112,7 +84582,7 @@ exports[`Story Snapshots: MessageWithReadReceipt should match snapshot 1`] = ` - + @@ -83160,51 +84630,61 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot ] } > - + @@ -83259,7 +84739,7 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -83640,51 +85120,61 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot ] } > - + @@ -83852,7 +85342,7 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot - + @@ -83887,51 +85377,61 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot ] } > - + @@ -83986,7 +85486,7 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -84367,51 +85867,61 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot ] } > - + @@ -84579,7 +86089,7 @@ exports[`Story Snapshots: MessageWithReadReceiptLargeFont should match snapshot - + @@ -84627,51 +86137,61 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` ] } > - + @@ -84726,7 +86246,7 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -85248,51 +86768,61 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` ] } > - + @@ -85347,7 +86877,7 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -86176,51 +87706,61 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` ] } > - + @@ -86275,7 +87815,7 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -86972,51 +88512,61 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` ] } > - + @@ -87071,7 +88621,7 @@ exports[`Story Snapshots: MessageWithReply should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -87842,51 +89392,61 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` ] } > - + @@ -87941,7 +89501,7 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -88450,51 +90010,61 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` ] } > - + @@ -88549,7 +90119,7 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -89135,51 +90705,61 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` ] } > - + @@ -89234,7 +90814,7 @@ exports[`Story Snapshots: MessageWithReplyAndFile should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -89907,51 +91487,61 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot ] } > - + @@ -90006,7 +91596,7 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -90515,51 +92105,61 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot ] } > - + @@ -90614,7 +92214,7 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -91200,51 +92800,61 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot ] } > - + @@ -91299,7 +92909,7 @@ exports[`Story Snapshots: MessageWithReplyAndFileLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -91972,51 +93582,61 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ] } > - + @@ -92071,7 +93691,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -92593,51 +94213,61 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ] } > - + @@ -92692,7 +94322,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -93258,51 +94888,61 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ] } > - + @@ -93357,7 +94997,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -94054,51 +95694,61 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = ] } > - + @@ -94153,7 +95803,7 @@ exports[`Story Snapshots: MessageWithReplyLargeFont should match snapshot 1`] = }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -94924,51 +96574,61 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` ] } > - + @@ -95023,7 +96683,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -95722,51 +97382,61 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` ] } > - + @@ -95935,7 +97605,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -96148,51 +97818,61 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` ] } > - + @@ -96361,7 +98041,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -96574,51 +98254,61 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` ] } > - + @@ -96787,7 +98477,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -97000,51 +98690,61 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` ] } > - + @@ -97213,7 +98913,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -97426,51 +99126,61 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` ] } > - + @@ -97639,7 +99349,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -97852,51 +99562,61 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` ] } > - + @@ -98065,7 +99785,7 @@ exports[`Story Snapshots: MessageWithThread should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -98267,51 +99987,61 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ] } > - + @@ -98366,7 +100096,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -99065,51 +100795,61 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ] } > - + @@ -99278,7 +101018,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -99491,51 +101231,61 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ] } > - + @@ -99704,7 +101454,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -99917,51 +101667,61 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ] } > - + @@ -100130,7 +101890,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -100343,51 +102103,61 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ] } > - + @@ -100556,7 +102326,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -100769,51 +102539,61 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ] } > - + @@ -100982,7 +102762,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -101195,51 +102975,61 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = ] } > - + @@ -101408,7 +103198,7 @@ exports[`Story Snapshots: MessageWithThreadLargeFont should match snapshot 1`] = undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -101610,51 +103400,61 @@ exports[`Story Snapshots: Names should match snapshot 1`] = ` ] } > - + @@ -101709,7 +103509,7 @@ exports[`Story Snapshots: Names should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -102083,7 +103883,7 @@ exports[`Story Snapshots: Names should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -102799,7 +104609,7 @@ exports[`Story Snapshots: Names should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -103173,7 +104983,7 @@ exports[`Story Snapshots: Names should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -103889,7 +105709,7 @@ exports[`Story Snapshots: Names should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -104263,7 +106083,7 @@ exports[`Story Snapshots: Names should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -104992,7 +106822,7 @@ exports[`Story Snapshots: Pinned should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -105372,51 +107202,61 @@ exports[`Story Snapshots: Pinned should match snapshot 1`] = ` ] } > - + @@ -105583,7 +107423,7 @@ exports[`Story Snapshots: Pinned should match snapshot 1`] = ` - + @@ -105631,51 +107471,61 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` ] } > - + @@ -105730,7 +107580,7 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -106110,51 +107960,61 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` ] } > - + @@ -106321,7 +108181,7 @@ exports[`Story Snapshots: PinnedLargeFont should match snapshot 1`] = ` - + @@ -106369,51 +108229,61 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` ] } > - + @@ -106468,7 +108338,7 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -107362,51 +109232,61 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` ] } > - + @@ -107461,7 +109341,7 @@ exports[`Story Snapshots: Reactions should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -108824,51 +110704,61 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` ] } > - + @@ -108923,7 +110813,7 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -109817,51 +111707,61 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` ] } > - + @@ -109916,7 +111816,7 @@ exports[`Story Snapshots: ReactionsLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -111279,51 +113179,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m ] } > - + @@ -111378,7 +113288,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -112077,51 +113987,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m ] } > - + @@ -112173,7 +114093,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -112386,51 +114306,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m ] } > - + @@ -112482,7 +114412,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -112695,51 +114625,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m ] } > - + @@ -112791,7 +114731,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButton should m undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -112993,51 +114933,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont ] } > - + @@ -113092,7 +115042,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -113791,51 +115741,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont ] } > - + @@ -113887,7 +115847,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -114100,51 +116060,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont ] } > - + @@ -114196,7 +116166,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -114409,51 +116379,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont ] } > - + @@ -114505,7 +116485,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadButtonLargeFont undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -114707,51 +116687,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma ] } > - + @@ -114920,7 +116910,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -115133,51 +117123,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma ] } > - + @@ -115229,7 +117229,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -115442,51 +117442,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma ] } > - + @@ -115538,7 +117548,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -115751,51 +117761,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma ] } > - + @@ -115847,7 +117867,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReply should ma undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -116049,51 +118069,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont ] } > - + @@ -116262,7 +118292,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -116475,51 +118505,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont ] } > - + @@ -116571,7 +118611,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -116784,51 +118824,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont ] } > - + @@ -116880,7 +118930,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -117093,51 +119143,61 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont ] } > - + @@ -117189,7 +119249,7 @@ exports[`Story Snapshots: SequentialThreadMessagesFollowingThreadReplyLargeFont undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -117391,51 +119451,61 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` ] } > - + @@ -117490,7 +119560,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -117914,51 +119984,61 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` ] } > - + @@ -118013,7 +120093,7 @@ exports[`Story Snapshots: ShowButtonAsAttachment should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -118615,51 +120695,61 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot ] } > - + @@ -118714,7 +120804,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -119138,51 +121228,61 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot ] } > - + @@ -119237,7 +121337,7 @@ exports[`Story Snapshots: ShowButtonAsAttachmentLargeFont should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -119839,51 +121939,61 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` ] } > - + @@ -119938,7 +122048,7 @@ exports[`Story Snapshots: StaticAvatar should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -120301,51 +122411,61 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` ] } > - + @@ -120400,7 +122520,7 @@ exports[`Story Snapshots: StaticAvatarLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -120785,7 +122905,7 @@ exports[`Story Snapshots: SystemMessages should match snapshot 1`] = ` undefined, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -133590,7 +135720,7 @@ exports[`Story Snapshots: Temp should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -133937,7 +136067,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` orderKey="«r8q»" > - + @@ -134057,7 +136197,7 @@ exports[`Story Snapshots: TempLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -134425,51 +136565,61 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` ] } > - + @@ -134524,7 +136674,7 @@ exports[`Story Snapshots: ThumbnailFromServer should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -135098,51 +137248,61 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] ] } > - + @@ -135197,7 +137357,7 @@ exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -135771,51 +137931,61 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` ] } > - + @@ -135870,7 +138040,7 @@ exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -136233,51 +138403,61 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` ] } > - + @@ -136332,7 +138512,7 @@ exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -136695,51 +138875,61 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` ] } > - + @@ -136795,7 +138985,7 @@ exports[`Story Snapshots: Translated should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -137193,51 +139383,61 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` ] } > - + @@ -137293,7 +139493,7 @@ exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -137691,51 +139891,61 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot ] } > - + @@ -137790,7 +140000,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -138869,51 +141079,61 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match ] } > - + @@ -138968,7 +141188,7 @@ exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -140047,51 +142267,61 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` ] } > - + @@ -140146,7 +142376,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -140633,51 +142863,61 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` ] } > - + @@ -140732,7 +142972,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -141224,51 +143464,61 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` ] } > - + @@ -141444,7 +143694,7 @@ exports[`Story Snapshots: URL should match snapshot 1`] = ` - + @@ -141492,51 +143742,61 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` ] } > - + @@ -141591,7 +143851,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -141980,51 +144240,61 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` ] } > - + @@ -142079,7 +144349,7 @@ exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -142424,51 +144694,61 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` ] } > - + @@ -142523,7 +144803,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -142912,51 +145192,61 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` ] } > - + @@ -143011,7 +145301,7 @@ exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -143356,51 +145646,61 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` ] } > - + @@ -143455,7 +145755,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -143942,51 +146242,61 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` ] } > - + @@ -144041,7 +146351,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -144533,51 +146843,61 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` ] } > - + @@ -144753,7 +147073,7 @@ exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` - + @@ -144801,51 +147121,61 @@ exports[`Story Snapshots: Usernames should match snapshot 1`] = ` ] } > - + @@ -144900,7 +147230,7 @@ exports[`Story Snapshots: Usernames should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -145274,7 +147604,7 @@ exports[`Story Snapshots: Usernames should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -145990,7 +148330,7 @@ exports[`Story Snapshots: Usernames should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -146364,7 +148704,7 @@ exports[`Story Snapshots: Usernames should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -147080,7 +149430,7 @@ exports[`Story Snapshots: Usernames should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -147454,7 +149804,7 @@ exports[`Story Snapshots: Usernames should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -148183,7 +150543,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -148552,51 +150912,61 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` ] } > - + @@ -148651,7 +151021,7 @@ exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -149033,51 +151403,61 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` ] } > - + @@ -149132,7 +151512,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -149501,51 +151881,61 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` ] } > - + @@ -149600,7 +151990,7 @@ exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -149982,51 +152372,61 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` ] } > - + @@ -150081,7 +152481,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -150714,51 +153114,61 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` ] } > - + @@ -151134,7 +153544,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` - + @@ -151169,51 +153579,61 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` ] } > - + @@ -151828,7 +154248,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` - + @@ -151863,51 +154283,61 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` ] } > - + @@ -152797,7 +155227,7 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` - + @@ -152845,51 +155275,61 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` ] } > - + @@ -152944,7 +155384,7 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -153577,51 +156017,61 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` ] } > - + @@ -153758,7 +156208,7 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` - + @@ -153793,51 +156243,61 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` ] } > - + @@ -154213,7 +156673,7 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` - + @@ -154248,51 +156708,61 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` ] } > - + @@ -154613,7 +157083,7 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` - + @@ -154648,51 +157118,61 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` ] } > - + @@ -155641,7 +158121,7 @@ exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` - + @@ -155689,51 +158169,61 @@ exports[`Story Snapshots: WithFile should match snapshot 1`] = ` ] } > - + @@ -155788,7 +158278,7 @@ exports[`Story Snapshots: WithFile should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -156329,51 +158819,61 @@ exports[`Story Snapshots: WithFile should match snapshot 1`] = ` ] } > - + @@ -156943,7 +159443,7 @@ exports[`Story Snapshots: WithFile should match snapshot 1`] = ` - + @@ -156991,51 +159491,61 @@ exports[`Story Snapshots: WithFileLargeFont should match snapshot 1`] = ` ] } > - + @@ -157090,7 +159600,7 @@ exports[`Story Snapshots: WithFileLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -157631,51 +160141,61 @@ exports[`Story Snapshots: WithFileLargeFont should match snapshot 1`] = ` ] } > - + @@ -158003,7 +160523,7 @@ exports[`Story Snapshots: WithFileLargeFont should match snapshot 1`] = ` - + @@ -158051,51 +160571,61 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` ] } > - + @@ -158150,7 +160680,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -158715,51 +161245,61 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` ] } > - + @@ -158814,7 +161354,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -159863,51 +162403,61 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` ] } > - + @@ -159962,7 +162512,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -160638,51 +163188,61 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` ] } > - + @@ -160737,7 +163297,7 @@ exports[`Story Snapshots: WithImage should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -161302,51 +163862,61 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` ] } > - + @@ -161401,7 +163971,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -161922,51 +164492,61 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` ] } > - + @@ -162274,7 +164854,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` - + @@ -162309,51 +164889,61 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` ] } > - + @@ -162408,7 +164998,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -163084,51 +165674,61 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` ] } > - + @@ -163183,7 +165783,7 @@ exports[`Story Snapshots: WithImageLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -163748,51 +166348,61 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` ] } > - + @@ -163847,7 +166457,7 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -164372,51 +166982,61 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` ] } > - + @@ -164684,7 +167304,7 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` - + @@ -164719,51 +167339,61 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` ] } > - + @@ -164818,7 +167448,7 @@ exports[`Story Snapshots: WithVideo should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -165443,51 +168073,61 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` ] } > - + @@ -165542,7 +168182,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -166067,51 +168707,61 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` ] } > - + @@ -166166,7 +168816,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -166592,51 +169242,61 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` ] } > - + @@ -166691,7 +169351,7 @@ exports[`Story Snapshots: WithVideoLargeFont should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -167316,51 +169976,61 @@ exports[`Story Snapshots: WithoutHeader should match snapshot 1`] = ` ] } > - + @@ -167497,7 +170167,7 @@ exports[`Story Snapshots: WithoutHeader should match snapshot 1`] = ` - + @@ -167545,51 +170215,61 @@ exports[`Story Snapshots: WithoutHeaderLargeFont should match snapshot 1`] = ` ] } > - + @@ -167726,7 +170406,7 @@ exports[`Story Snapshots: WithoutHeaderLargeFont should match snapshot 1`] = ` - + diff --git a/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap b/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap index 334bfeced33..0399421ed53 100644 --- a/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap +++ b/app/views/DiscussionsView/__snapshots__/Item.test.tsx.snap @@ -119,7 +119,7 @@ exports[`Story Snapshots: Content should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -659,7 +669,7 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -1009,51 +1019,61 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` ] } > - + @@ -1190,7 +1210,7 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` - + @@ -1225,51 +1245,61 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` ] } > - + @@ -1406,7 +1436,7 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` - + @@ -1653,51 +1683,61 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` ] } > - + @@ -1752,7 +1792,7 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -2102,51 +2142,61 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` ] } > - + @@ -2283,7 +2333,7 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` - + @@ -2318,51 +2368,61 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` ] } > - + @@ -2499,7 +2559,7 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` - + @@ -2534,51 +2594,61 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` ] } > - + @@ -2633,7 +2703,7 @@ exports[`Story Snapshots: BlackTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -3102,51 +3172,61 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` ] } > - + @@ -3201,7 +3281,7 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -3551,51 +3631,61 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` ] } > - + @@ -3732,7 +3822,7 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` - + @@ -3767,51 +3857,61 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` ] } > - + @@ -3948,7 +4048,7 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` - + @@ -4195,51 +4295,61 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` ] } > - + @@ -4294,7 +4404,7 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -4644,51 +4754,61 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` ] } > - + @@ -4825,7 +4945,7 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` - + @@ -4860,51 +4980,61 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` ] } > - + @@ -5041,7 +5171,7 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` - + @@ -5076,51 +5206,61 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` ] } > - + @@ -5175,7 +5315,7 @@ exports[`Story Snapshots: DarkTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -5644,51 +5784,61 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` ] } > - + @@ -5743,7 +5893,7 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -6093,51 +6243,61 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` ] } > - + @@ -6274,7 +6434,7 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` - + @@ -6309,51 +6469,61 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` ] } > - + @@ -6490,7 +6660,7 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` - + @@ -6737,51 +6907,61 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` ] } > - + @@ -6836,7 +7016,7 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + @@ -7186,51 +7366,61 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` ] } > - + @@ -7367,7 +7557,7 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` - + @@ -7402,51 +7592,61 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` ] } > - + @@ -7583,7 +7783,7 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` - + @@ -7618,51 +7818,61 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` ] } > - + @@ -7717,7 +7927,7 @@ exports[`Story Snapshots: LightTheme should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" > - + diff --git a/app/views/ThreadMessagesView/__snapshots__/Item.test.tsx.snap b/app/views/ThreadMessagesView/__snapshots__/Item.test.tsx.snap index 8d806e2f62f..67a63f800ee 100644 --- a/app/views/ThreadMessagesView/__snapshots__/Item.test.tsx.snap +++ b/app/views/ThreadMessagesView/__snapshots__/Item.test.tsx.snap @@ -119,7 +119,7 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` }, ] } - testID="avatar" + testID="avatar-rocket.cat" >