From fd9e0c18c23dd0f6f2224ae5993174ab8b9bc37d Mon Sep 17 00:00:00 2001 From: Alessandro Izzo Date: Mon, 27 May 2024 16:31:13 +0200 Subject: [PATCH 1/6] chore: Add remote feature flag to the new payment section --- package.json | 2 +- .../checkout/hooks/usePagoPaPayment.ts | 4 ++-- ts/navigation/AppStackNavigator.tsx | 6 +++--- ts/navigation/AuthenticatedStackNavigator.tsx | 10 ++++----- ts/navigation/TabNavigator.tsx | 6 +++--- .../components/HeaderFirstLevelHandler.tsx | 4 ++-- ts/store/reducers/backendStatus.ts | 21 ++++++++++++++++++- 7 files changed, 35 insertions(+), 18 deletions(-) diff --git a/package.json b/package.json index 093d52b7592..f45cba6335f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "2.61.0-rc.0", "io_backend_api": "https://raw.githubusercontent.com/pagopa/io-backend/v13.32.1-RELEASE/api_backend.yaml", "io_public_api": "https://raw.githubusercontent.com/pagopa/io-backend/v13.32.1-RELEASE/api_public.yaml", - "io_content_specs": "https://raw.githubusercontent.com/pagopa/io-services-metadata/1.0.31/definitions.yml", + "io_content_specs": "https://raw.githubusercontent.com/pagopa/io-services-metadata/1.0.32/definitions.yml", "io_cgn_specs": "https://raw.githubusercontent.com/pagopa/io-backend/v13.32.1-RELEASE/api_cgn.yaml", "io_cgn_merchants_specs": "https://raw.githubusercontent.com/pagopa/io-backend/v13.29.2-RELEASE/api_cgn_operator_search.yaml", "api_fci": "https://raw.githubusercontent.com/pagopa/io-backend/v13.32.1-RELEASE/api_io_sign.yaml", diff --git a/ts/features/payments/checkout/hooks/usePagoPaPayment.ts b/ts/features/payments/checkout/hooks/usePagoPaPayment.ts index e3d474958a1..81e92d44cda 100644 --- a/ts/features/payments/checkout/hooks/usePagoPaPayment.ts +++ b/ts/features/payments/checkout/hooks/usePagoPaPayment.ts @@ -16,7 +16,7 @@ import { PaymentInitStateParams, initPaymentStateAction } from "../store/actions/orchestration"; -import { isNewWalletSectionEnabledSelector } from "../../../../store/reducers/persistedPreferences"; +import { isNewPaymentSectionEnabledSelector } from "../../../../store/reducers/backendStatus"; type PagoPaPaymentParams = Omit; @@ -53,7 +53,7 @@ const usePagoPaPayment = (): UsePagoPaPayment => { // Checks if the new wallet section is enabled const isNewWalletSectionEnabled = useIOSelector( - isNewWalletSectionEnabledSelector + isNewPaymentSectionEnabledSelector ); /** diff --git a/ts/navigation/AppStackNavigator.tsx b/ts/navigation/AppStackNavigator.tsx index eaa4831004e..95254755f17 100644 --- a/ts/navigation/AppStackNavigator.tsx +++ b/ts/navigation/AppStackNavigator.tsx @@ -23,9 +23,9 @@ import { useIODispatch, useIOSelector } from "../store/hooks"; import { trackScreen } from "../store/middlewares/navigation"; import { isCGNEnabledSelector, - isFIMSEnabledSelector + isFIMSEnabledSelector, + isNewPaymentSectionEnabledSelector } from "../store/reducers/backendStatus"; -import { isNewWalletSectionEnabledSelector } from "../store/reducers/persistedPreferences"; import { StartupStatusEnum, isStartupLoaded } from "../store/reducers/startup"; import { IONavigationDarkTheme, @@ -87,7 +87,7 @@ const InnerNavigationContainer = (props: { children: React.ReactElement }) => { const cgnEnabled = useIOSelector(isCGNEnabledSelector); const isFimsEnabled = useIOSelector(isFIMSEnabledSelector) && fimsEnabled; const isNewWalletSectionEnabled = useIOSelector( - isNewWalletSectionEnabledSelector + isNewPaymentSectionEnabledSelector ); // Dark/Light Mode diff --git a/ts/navigation/AuthenticatedStackNavigator.tsx b/ts/navigation/AuthenticatedStackNavigator.tsx index 67ac73d7646..885c0a702e1 100644 --- a/ts/navigation/AuthenticatedStackNavigator.tsx +++ b/ts/navigation/AuthenticatedStackNavigator.tsx @@ -70,12 +70,10 @@ import { isCGNEnabledSelector, isFciEnabledSelector, isFIMSEnabledSelector, - isIdPayEnabledSelector + isIdPayEnabledSelector, + isNewPaymentSectionEnabledSelector } from "../store/reducers/backendStatus"; -import { - isItWalletTestEnabledSelector, - isNewWalletSectionEnabledSelector -} from "../store/reducers/persistedPreferences"; +import { isItWalletTestEnabledSelector } from "../store/reducers/persistedPreferences"; import { isGestureEnabled } from "../utils/navigation"; import { ItwStackNavigator } from "../features/itwallet/navigation/ItwStackNavigator"; import { ITW_ROUTES } from "../features/itwallet/navigation/routes"; @@ -102,7 +100,7 @@ const AuthenticatedStackNavigator = () => { const isFciEnabled = useIOSelector(isFciEnabledSelector); const isIdPayEnabled = useIOSelector(isIdPayEnabledSelector); const isNewWalletSectionEnabled = useIOSelector( - isNewWalletSectionEnabledSelector + isNewPaymentSectionEnabledSelector ); const isItWalletEnabled = useIOSelector(isItWalletTestEnabledSelector); diff --git a/ts/navigation/TabNavigator.tsx b/ts/navigation/TabNavigator.tsx index 3306a6cd159..1a6534f09e6 100644 --- a/ts/navigation/TabNavigator.tsx +++ b/ts/navigation/TabNavigator.tsx @@ -18,9 +18,9 @@ import WalletHomeScreen from "../screens/wallet/WalletHomeScreen"; import { useIOSelector } from "../store/hooks"; import { isDesignSystemEnabledSelector, - isNewHomeSectionEnabledSelector, - isNewWalletSectionEnabledSelector + isNewHomeSectionEnabledSelector } from "../store/reducers/persistedPreferences"; +import { isNewPaymentSectionEnabledSelector } from "../store/reducers/backendStatus"; import { StartupStatusEnum, isStartupLoaded } from "../store/reducers/startup"; import variables from "../theme/variables"; import { MESSAGES_ROUTES } from "../features/messages/navigation/routes"; @@ -61,7 +61,7 @@ export const MainTabNavigator = () => { const startupLoaded = useIOSelector(isStartupLoaded); const isDesignSystemEnabled = useIOSelector(isDesignSystemEnabledSelector); const isNewWalletSectionEnabled = useIOSelector( - isNewWalletSectionEnabledSelector + isNewPaymentSectionEnabledSelector ); const isNewHomeSectionEnabled = useIOSelector( isNewHomeSectionEnabledSelector diff --git a/ts/navigation/components/HeaderFirstLevelHandler.tsx b/ts/navigation/components/HeaderFirstLevelHandler.tsx index 3d821b5d0e7..05fb7fbbc4b 100644 --- a/ts/navigation/components/HeaderFirstLevelHandler.tsx +++ b/ts/navigation/components/HeaderFirstLevelHandler.tsx @@ -12,10 +12,10 @@ import I18n from "../../i18n"; import { navigateToServicePreferenceScreen } from "../../store/actions/navigation"; import { searchMessagesEnabled } from "../../store/actions/search"; import { useIODispatch, useIOSelector } from "../../store/hooks"; -import { isNewWalletSectionEnabledSelector } from "../../store/reducers/persistedPreferences"; import { SERVICES_ROUTES } from "../../features/services/common/navigation/routes"; import { MainTabParamsList } from "../params/MainTabParamsList"; import ROUTES from "../routes"; +import { isNewPaymentSectionEnabledSelector } from "../../store/reducers/backendStatus"; type HeaderFirstLevelProps = ComponentProps; type TabRoutes = keyof MainTabParamsList; @@ -72,7 +72,7 @@ export const HeaderFirstLevelHandler = ({ currentRouteName }: Props) => { const dispatch = useIODispatch(); const isNewWalletSectionEnabled = useIOSelector( - isNewWalletSectionEnabledSelector + isNewPaymentSectionEnabledSelector ); const requestParams = useMemo( diff --git a/ts/store/reducers/backendStatus.ts b/ts/store/reducers/backendStatus.ts index b3ee4527ea0..46aa8a01bc0 100644 --- a/ts/store/reducers/backendStatus.ts +++ b/ts/store/reducers/backendStatus.ts @@ -31,7 +31,10 @@ import { isStringNullyOrEmpty } from "../../utils/strings"; import { backendStatusLoadSuccess } from "../actions/backendStatus"; import { Action } from "../actions/types"; -import { isIdPayTestEnabledSelector } from "./persistedPreferences"; +import { + isIdPayTestEnabledSelector, + isNewWalletSectionEnabledSelector +} from "./persistedPreferences"; import { GlobalState } from "./types"; export type SectionStatusKey = keyof Sections; @@ -407,6 +410,22 @@ export const isIdPayEnabledSelector = createSelector( ) ); +/** + * Return the remote config about the new payment section enabled/disabled + * If the local feature flag is enabled, the remote config is ignored + */ +export const isNewPaymentSectionEnabledSelector = createSelector( + backendStatusSelector, + isNewWalletSectionEnabledSelector, + (backendStatus, isNeWalletSectionEnabled): boolean => + isNeWalletSectionEnabled || + pipe( + backendStatus, + O.map(bs => bs.config.newPaymentSection.enabled), + O.getOrElse(() => false) + ) +); + // systems could be consider dead when we have no updates for at least DEAD_COUNTER_THRESHOLD times export const DEAD_COUNTER_THRESHOLD = 2; From edfe099cc847dcc2e43afb7be2544c4dec123cc2 Mon Sep 17 00:00:00 2001 From: Alessandro Izzo Date: Mon, 27 May 2024 16:35:56 +0200 Subject: [PATCH 2/6] chore: prettify From 8bedd3685806d63d8a54b517f69f861ed2915fca Mon Sep 17 00:00:00 2001 From: Alessandro Izzo Date: Mon, 27 May 2024 17:50:22 +0200 Subject: [PATCH 3/6] fix: mock backend status file --- ts/store/reducers/__mock__/backendStatus.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ts/store/reducers/__mock__/backendStatus.ts b/ts/store/reducers/__mock__/backendStatus.ts index e04892d3701..6383e066c1b 100644 --- a/ts/store/reducers/__mock__/backendStatus.ts +++ b/ts/store/reducers/__mock__/backendStatus.ts @@ -281,6 +281,13 @@ export const baseRawBackendStatus: BackendStatus = { ios: "0.0.0.0" } }, + newPaymentSection: { + enabled: false, + min_app_version: { + android: "0.0.0.0", + ios: "0.0.0.0" + } + }, lollipop: { enabled: false, min_app_version: { @@ -373,6 +380,13 @@ export const baseBackendConfig: Config = { ios: "0.0.0.0" } }, + newPaymentSection: { + enabled: false, + min_app_version: { + android: "0.0.0.0", + ios: "0.0.0.0" + } + }, lollipop: { enabled: false, min_app_version: { From 07e18eac4510a6eae33219917b48c7a01f154c72 Mon Sep 17 00:00:00 2001 From: Alessandro Izzo Date: Mon, 27 May 2024 20:01:12 +0200 Subject: [PATCH 4/6] fix: tests --- ts/store/reducers/backendStatus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/store/reducers/backendStatus.ts b/ts/store/reducers/backendStatus.ts index 46aa8a01bc0..3ef53b1b170 100644 --- a/ts/store/reducers/backendStatus.ts +++ b/ts/store/reducers/backendStatus.ts @@ -421,7 +421,7 @@ export const isNewPaymentSectionEnabledSelector = createSelector( isNeWalletSectionEnabled || pipe( backendStatus, - O.map(bs => bs.config.newPaymentSection.enabled), + O.map(bs => bs.config.newPaymentSection?.enabled), O.getOrElse(() => false) ) ); From 38fc54ca7284cf27e8c5f996d443dc424295c044 Mon Sep 17 00:00:00 2001 From: Alessandro Izzo Date: Mon, 27 May 2024 20:12:44 +0200 Subject: [PATCH 5/6] fix: snapshots --- .../MessageDetailsAttachments.test.tsx.snap | 4 + .../MessageDetailsPayment.test.tsx.snap | 1 + .../ShowMoreListItem.test.tsx.snap | 10 + .../__snapshots__/F24Section.test.tsx.snap | 2 + .../MessageBottomMenu.test.tsx.snap | 200 ++++++++++++++++++ .../MessageDetails.test.tsx.snap | 3 + .../__snapshots__/MessageInfo.test.tsx.snap | 1 + .../MessagePayments.test.tsx.snap | 8 + .../MessageDetailsScreen.test.tsx.snap | 4 + 9 files changed, 233 insertions(+) diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap index 416f783e24a..936fc94b11d 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap @@ -429,6 +429,7 @@ exports[`MessageDetailsAttachments Should match snapshot with 1 attachment 1`] = "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -893,6 +894,7 @@ exports[`MessageDetailsAttachments Should match snapshot with 1 attachment that "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -2019,6 +2021,7 @@ exports[`MessageDetailsAttachments Should match snapshot with 10 attachments 1`] "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -2483,6 +2486,7 @@ exports[`MessageDetailsAttachments Should match snapshot with 10 attachments tha "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap index a852f054a1a..9186a976b33 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap @@ -780,6 +780,7 @@ exports[`MessageDetailsPayment Should match snapshot when there are payment data "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap index 01a988440c1..14da594b1ae 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap @@ -1077,6 +1077,7 @@ exports[`ShowMoreListItem should match snapshot, one section, no items 1`] = ` "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -1669,6 +1670,7 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, no icon "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -2450,6 +2452,7 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, with ico "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -3299,6 +3302,7 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -4277,6 +4281,7 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -5391,6 +5396,7 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -5647,6 +5653,7 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -6168,6 +6175,7 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -7411,6 +7419,7 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -7667,6 +7676,7 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap index f52758e718e..1d52a44da7e 100644 --- a/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap @@ -432,6 +432,7 @@ exports[`F24Section should match snapshot when there are more than one F24 1`] = "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -2526,6 +2527,7 @@ exports[`F24Section should match snapshot when there is a single F24 1`] = ` "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap index 907d4a8ff7b..57de0f85d16 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap @@ -2846,6 +2846,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -3170,6 +3171,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -6313,6 +6315,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -6637,6 +6640,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -6961,6 +6965,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -10104,6 +10109,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -10428,6 +10434,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -13571,6 +13578,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -13895,6 +13903,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -17038,6 +17047,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -17362,6 +17372,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -20505,6 +20516,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -20829,6 +20841,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -23972,6 +23985,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -24296,6 +24310,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -27439,6 +27454,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -27763,6 +27779,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -30906,6 +30923,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -31230,6 +31248,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -34373,6 +34392,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -34697,6 +34717,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -37840,6 +37861,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -38164,6 +38186,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -38488,6 +38511,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -41631,6 +41655,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -41955,6 +41980,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -45098,6 +45124,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -45422,6 +45449,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -45746,6 +45774,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -46335,6 +46364,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -46924,6 +46954,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -50332,6 +50363,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -50656,6 +50688,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -50980,6 +51013,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -51569,6 +51603,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -52158,6 +52193,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -55566,6 +55602,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -55890,6 +55927,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -56214,6 +56252,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -56803,6 +56842,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -57392,6 +57432,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -60800,6 +60841,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -61124,6 +61166,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -61448,6 +61491,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -62037,6 +62081,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -62626,6 +62671,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -66034,6 +66080,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -66358,6 +66405,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -66682,6 +66730,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -67271,6 +67320,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -67860,6 +67910,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -71268,6 +71319,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -71592,6 +71644,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -71916,6 +71969,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -72505,6 +72559,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -73094,6 +73149,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -76502,6 +76558,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -76826,6 +76883,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -79969,6 +80027,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -80293,6 +80352,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -80617,6 +80677,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -83760,6 +83821,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -84084,6 +84146,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -87227,6 +87290,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -87551,6 +87615,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -87875,6 +87940,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -91283,6 +91349,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -91607,6 +91674,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -91931,6 +91999,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -95339,6 +95408,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -95663,6 +95733,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -95987,6 +96058,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -99395,6 +99467,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -99719,6 +99792,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -100043,6 +100117,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -103451,6 +103526,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -103775,6 +103851,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -104099,6 +104176,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -107507,6 +107585,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -107831,6 +107910,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -108155,6 +108235,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -111563,6 +111644,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -111887,6 +111969,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -115030,6 +115113,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -115354,6 +115438,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -115678,6 +115763,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -118821,6 +118907,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -119145,6 +119232,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -122288,6 +122376,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -122612,6 +122701,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -125755,6 +125845,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -126079,6 +126170,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -129222,6 +129314,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -129546,6 +129639,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -132689,6 +132783,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -133013,6 +133108,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -136156,6 +136252,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -136480,6 +136577,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -139623,6 +139721,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -139947,6 +140046,7 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -140995,6 +141095,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -141319,6 +141420,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -142367,6 +142469,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -142691,6 +142794,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -143015,6 +143119,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -144063,6 +144168,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -144387,6 +144493,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -145435,6 +145542,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -145759,6 +145867,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -146807,6 +146916,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -147131,6 +147241,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -148179,6 +148290,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -148503,6 +148615,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -149551,6 +149664,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -149875,6 +149989,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -150923,6 +151038,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -151247,6 +151363,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -152295,6 +152412,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -152619,6 +152737,7 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -153667,6 +153786,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -153991,6 +154111,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -155039,6 +155160,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -155363,6 +155485,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -155687,6 +155810,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -156735,6 +156859,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -157059,6 +157184,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -158107,6 +158233,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -158431,6 +158558,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -158755,6 +158883,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -159344,6 +159473,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -159933,6 +160063,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -161246,6 +161377,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -161570,6 +161702,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -161894,6 +162027,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -162483,6 +162617,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -163072,6 +163207,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -164385,6 +164521,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -164709,6 +164846,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -165033,6 +165171,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -165622,6 +165761,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -166211,6 +166351,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -167524,6 +167665,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -167848,6 +167990,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -168172,6 +168315,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -168761,6 +168905,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -169350,6 +169495,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -170663,6 +170809,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -170987,6 +171134,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -171311,6 +171459,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -171900,6 +172049,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -172489,6 +172639,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -173802,6 +173953,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -174126,6 +174278,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -174450,6 +174603,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -175039,6 +175193,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -175628,6 +175783,7 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -176941,6 +177097,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -177265,6 +177422,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -178313,6 +178471,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -178637,6 +178796,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -178961,6 +179121,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -180009,6 +180170,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -180333,6 +180495,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -181381,6 +181544,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -181705,6 +181869,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -182029,6 +182194,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -183342,6 +183508,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -183666,6 +183833,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -183990,6 +184158,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -185303,6 +185472,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -185627,6 +185797,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -185951,6 +186122,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -187264,6 +187436,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -187588,6 +187761,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -187912,6 +188086,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -189225,6 +189400,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -189549,6 +189725,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -189873,6 +190050,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -191186,6 +191364,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -191510,6 +191689,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -191834,6 +192014,7 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -193147,6 +193328,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -193471,6 +193653,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -194519,6 +194702,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -194843,6 +195027,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -195167,6 +195352,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -196215,6 +196401,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -196539,6 +196726,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -197587,6 +197775,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -197911,6 +198100,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -198959,6 +199149,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -199283,6 +199474,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -200331,6 +200523,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -200655,6 +200848,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -201703,6 +201897,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -202027,6 +202222,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -203075,6 +203271,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -203399,6 +203596,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -204447,6 +204645,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -204771,6 +204970,7 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap index d31ae40fa7f..a83051e3019 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap @@ -840,6 +840,7 @@ exports[`MessageDetails component should match the snapshot with default props 1 "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -1484,6 +1485,7 @@ exports[`MessageDetails component should match the snapshot with default props 1 "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -1808,6 +1810,7 @@ exports[`MessageDetails component should match the snapshot with default props 1 "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap index ed366107195..b861fbf7d2e 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap @@ -432,6 +432,7 @@ exports[`MessageInfo should match snapshot 1`] = ` "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap index ecb9c396353..909d9cf5da7 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap @@ -773,6 +773,7 @@ exports[`MessagePayments should match snapshot when cancelled, with payments, wi "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -2972,6 +2973,7 @@ exports[`MessagePayments should match snapshot when cancelled, without payments, "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -5502,6 +5504,7 @@ exports[`MessagePayments should match snapshot when not cancelled, with five (ma "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -7184,6 +7187,7 @@ exports[`MessagePayments should match snapshot when not cancelled, with five (ma "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -8866,6 +8870,7 @@ exports[`MessagePayments should match snapshot when not cancelled, with more-tha "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -10656,6 +10661,7 @@ exports[`MessagePayments should match snapshot when not cancelled, with more-tha "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -12446,6 +12452,7 @@ exports[`MessagePayments should match snapshot when not cancelled, with one paya "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -13148,6 +13155,7 @@ exports[`MessagePayments should match snapshot when not cancelled, with one paya "lineHeight": 25, } } + role="heading" style={ Array [ Object { diff --git a/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap b/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap index 14083520d0c..99b2499c3d5 100644 --- a/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap +++ b/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap @@ -825,6 +825,7 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -1430,6 +1431,7 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -2074,6 +2076,7 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } + role="heading" style={ Array [ Object { @@ -2398,6 +2401,7 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } + role="heading" style={ Array [ Object { From acadd61bed6c26273cc5f50fa929163569c147d4 Mon Sep 17 00:00:00 2001 From: Alessandro Izzo Date: Wed, 29 May 2024 12:25:23 +0200 Subject: [PATCH 6/6] chore: snapshots update --- .../MessageDetailsAttachments.test.tsx.snap | 4 - .../MessageDetailsPayment.test.tsx.snap | 1 - .../ShowMoreListItem.test.tsx.snap | 10 - .../__snapshots__/F24Section.test.tsx.snap | 2 - .../MessageBottomMenu.test.tsx.snap | 200 ------------------ .../MessageDetails.test.tsx.snap | 3 - .../__snapshots__/MessageInfo.test.tsx.snap | 1 - .../MessagePayments.test.tsx.snap | 8 - .../MessageDetailsScreen.test.tsx.snap | 4 - 9 files changed, 233 deletions(-) diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap index 936fc94b11d..416f783e24a 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsAttachments.test.tsx.snap @@ -429,7 +429,6 @@ exports[`MessageDetailsAttachments Should match snapshot with 1 attachment 1`] = "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -894,7 +893,6 @@ exports[`MessageDetailsAttachments Should match snapshot with 1 attachment that "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -2021,7 +2019,6 @@ exports[`MessageDetailsAttachments Should match snapshot with 10 attachments 1`] "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -2486,7 +2483,6 @@ exports[`MessageDetailsAttachments Should match snapshot with 10 attachments tha "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap index 9186a976b33..a852f054a1a 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsPayment.test.tsx.snap @@ -780,7 +780,6 @@ exports[`MessageDetailsPayment Should match snapshot when there are payment data "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap index 14da594b1ae..01a988440c1 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/ShowMoreListItem.test.tsx.snap @@ -1077,7 +1077,6 @@ exports[`ShowMoreListItem should match snapshot, one section, no items 1`] = ` "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -1670,7 +1669,6 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, no icon "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -2452,7 +2450,6 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, with ico "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -3302,7 +3299,6 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -4281,7 +4277,6 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -5396,7 +5391,6 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -5653,7 +5647,6 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -6175,7 +6168,6 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -7419,7 +7411,6 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -7676,7 +7667,6 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap index 1d52a44da7e..f52758e718e 100644 --- a/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap @@ -432,7 +432,6 @@ exports[`F24Section should match snapshot when there are more than one F24 1`] = "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -2527,7 +2526,6 @@ exports[`F24Section should match snapshot when there is a single F24 1`] = ` "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap index 57de0f85d16..907d4a8ff7b 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageBottomMenu.test.tsx.snap @@ -2846,7 +2846,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -3171,7 +3170,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -6315,7 +6313,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -6640,7 +6637,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -6965,7 +6961,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -10109,7 +10104,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -10434,7 +10428,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -13578,7 +13571,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -13903,7 +13895,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -17047,7 +17038,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -17372,7 +17362,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -20516,7 +20505,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -20841,7 +20829,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -23985,7 +23972,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -24310,7 +24296,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -27454,7 +27439,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -27779,7 +27763,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -30923,7 +30906,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -31248,7 +31230,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -34392,7 +34373,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -34717,7 +34697,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -37861,7 +37840,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -38186,7 +38164,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -38511,7 +38488,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -41655,7 +41631,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -41980,7 +41955,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -45124,7 +45098,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -45449,7 +45422,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -45774,7 +45746,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -46364,7 +46335,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -46954,7 +46924,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -50363,7 +50332,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -50688,7 +50656,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -51013,7 +50980,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -51603,7 +51569,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -52193,7 +52158,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -55602,7 +55566,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -55927,7 +55890,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -56252,7 +56214,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -56842,7 +56803,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -57432,7 +57392,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -60841,7 +60800,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -61166,7 +61124,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -61491,7 +61448,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -62081,7 +62037,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -62671,7 +62626,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -66080,7 +66034,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -66405,7 +66358,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -66730,7 +66682,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -67320,7 +67271,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -67910,7 +67860,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -71319,7 +71268,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -71644,7 +71592,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -71969,7 +71916,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -72559,7 +72505,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -73149,7 +73094,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -76558,7 +76502,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -76883,7 +76826,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -80027,7 +79969,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -80352,7 +80293,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -80677,7 +80617,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -83821,7 +83760,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -84146,7 +84084,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -87290,7 +87227,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -87615,7 +87551,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -87940,7 +87875,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -91349,7 +91283,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -91674,7 +91607,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -91999,7 +91931,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -95408,7 +95339,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -95733,7 +95663,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -96058,7 +95987,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -99467,7 +99395,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -99792,7 +99719,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -100117,7 +100043,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -103526,7 +103451,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -103851,7 +103775,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -104176,7 +104099,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -107585,7 +107507,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -107910,7 +107831,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -108235,7 +108155,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -111644,7 +111563,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -111969,7 +111887,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -115113,7 +115030,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -115438,7 +115354,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -115763,7 +115678,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -118907,7 +118821,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -119232,7 +119145,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -122376,7 +122288,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -122701,7 +122612,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -125845,7 +125755,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -126170,7 +126079,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -129314,7 +129222,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -129639,7 +129546,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -132783,7 +132689,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -133108,7 +133013,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -136252,7 +136156,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -136577,7 +136480,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -139721,7 +139623,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -140046,7 +139947,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -141095,7 +140995,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -141420,7 +141319,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -142469,7 +142367,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -142794,7 +142691,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -143119,7 +143015,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -144168,7 +144063,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -144493,7 +144387,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -145542,7 +145435,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -145867,7 +145759,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -146916,7 +146807,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -147241,7 +147131,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -148290,7 +148179,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -148615,7 +148503,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -149664,7 +149551,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -149989,7 +149875,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -151038,7 +150923,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -151363,7 +151247,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -152412,7 +152295,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -152737,7 +152619,6 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -153786,7 +153667,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -154111,7 +153991,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -155160,7 +155039,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -155485,7 +155363,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -155810,7 +155687,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -156859,7 +156735,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -157184,7 +157059,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -158233,7 +158107,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -158558,7 +158431,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -158883,7 +158755,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -159473,7 +159344,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -160063,7 +159933,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -161377,7 +161246,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -161702,7 +161570,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -162027,7 +161894,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -162617,7 +162483,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -163207,7 +163072,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -164521,7 +164385,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -164846,7 +164709,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -165171,7 +165033,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -165761,7 +165622,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -166351,7 +166211,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -167665,7 +167524,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -167990,7 +167848,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -168315,7 +168172,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -168905,7 +168761,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -169495,7 +169350,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -170809,7 +170663,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -171134,7 +170987,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -171459,7 +171311,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -172049,7 +171900,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -172639,7 +172489,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -173953,7 +173802,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -174278,7 +174126,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -174603,7 +174450,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -175193,7 +175039,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -175783,7 +175628,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -177097,7 +176941,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -177422,7 +177265,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -178471,7 +178313,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -178796,7 +178637,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -179121,7 +178961,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -180170,7 +180009,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -180495,7 +180333,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -181544,7 +181381,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -181869,7 +181705,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -182194,7 +182029,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -183508,7 +183342,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -183833,7 +183666,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -184158,7 +183990,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -185472,7 +185303,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -185797,7 +185627,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -186122,7 +185951,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -187436,7 +187264,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -187761,7 +187588,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -188086,7 +187912,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -189400,7 +189225,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -189725,7 +189549,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -190050,7 +189873,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -191364,7 +191186,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -191689,7 +191510,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -192014,7 +191834,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -193328,7 +193147,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -193653,7 +193471,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -194702,7 +194519,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -195027,7 +194843,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -195352,7 +195167,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -196401,7 +196215,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -196726,7 +196539,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -197775,7 +197587,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -198100,7 +197911,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -199149,7 +198959,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -199474,7 +199283,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -200523,7 +200331,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -200848,7 +200655,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -201897,7 +201703,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -202222,7 +202027,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -203271,7 +203075,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -203596,7 +203399,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -204645,7 +204447,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -204970,7 +204771,6 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap index a83051e3019..d31ae40fa7f 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap @@ -840,7 +840,6 @@ exports[`MessageDetails component should match the snapshot with default props 1 "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -1485,7 +1484,6 @@ exports[`MessageDetails component should match the snapshot with default props 1 "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -1810,7 +1808,6 @@ exports[`MessageDetails component should match the snapshot with default props 1 "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap index b861fbf7d2e..ed366107195 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageInfo.test.tsx.snap @@ -432,7 +432,6 @@ exports[`MessageInfo should match snapshot 1`] = ` "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap index 909d9cf5da7..ecb9c396353 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap @@ -773,7 +773,6 @@ exports[`MessagePayments should match snapshot when cancelled, with payments, wi "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -2973,7 +2972,6 @@ exports[`MessagePayments should match snapshot when cancelled, without payments, "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -5504,7 +5502,6 @@ exports[`MessagePayments should match snapshot when not cancelled, with five (ma "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -7187,7 +7184,6 @@ exports[`MessagePayments should match snapshot when not cancelled, with five (ma "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -8870,7 +8866,6 @@ exports[`MessagePayments should match snapshot when not cancelled, with more-tha "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -10661,7 +10656,6 @@ exports[`MessagePayments should match snapshot when not cancelled, with more-tha "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -12452,7 +12446,6 @@ exports[`MessagePayments should match snapshot when not cancelled, with one paya "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -13155,7 +13148,6 @@ exports[`MessagePayments should match snapshot when not cancelled, with one paya "lineHeight": 25, } } - role="heading" style={ Array [ Object { diff --git a/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap b/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap index 99b2499c3d5..14083520d0c 100644 --- a/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap +++ b/ts/features/pn/screens/__test__/__snapshots__/MessageDetailsScreen.test.tsx.snap @@ -825,7 +825,6 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -1431,7 +1430,6 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -2076,7 +2074,6 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } - role="heading" style={ Array [ Object { @@ -2401,7 +2398,6 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "lineHeight": 25, } } - role="heading" style={ Array [ Object {