diff --git a/Mobile-Expensify b/Mobile-Expensify index fd7fd7473355..b73bf43f7339 160000 --- a/Mobile-Expensify +++ b/Mobile-Expensify @@ -1 +1 @@ -Subproject commit fd7fd7473355af8508084078d51529d6ebfd19fa +Subproject commit b73bf43f7339efe3f813b1894de081ff3b2c056a diff --git a/src/components/BlockingViews/BlockingView.tsx b/src/components/BlockingViews/BlockingView.tsx index 01fec5f48bfc..26253e6715a9 100644 --- a/src/components/BlockingViews/BlockingView.tsx +++ b/src/components/BlockingViews/BlockingView.tsx @@ -52,6 +52,9 @@ type BaseBlockingViewProps = { /** Whether to add bottom safe area padding to the view. */ addBottomSafeAreaPadding?: boolean; + /** Accessibility label for the view */ + accessibilityLabel?: string; + /** Whether to add bottom safe area padding to the content. */ addOfflineIndicatorBottomSafeAreaPadding?: boolean; }; @@ -99,6 +102,7 @@ function BlockingView({ shouldEmbedLinkWithSubtitle = false, animationStyles = [], animationWebStyle = {}, + accessibilityLabel = '', CustomSubtitle, contentFitImage, containerStyle: containerStyleProp, @@ -144,7 +148,10 @@ function BlockingView({ const containerStyle = useBottomSafeSafeAreaPaddingStyle({addBottomSafeAreaPadding, addOfflineIndicatorBottomSafeAreaPadding, style: containerStyleProp}); return ( - + {!!animation && ( ) : (