diff --git a/src/components/EmptyStateComponent/index.tsx b/src/components/EmptyStateComponent/index.tsx index 6d51d1b3c5c3..ae7ea7f09503 100644 --- a/src/components/EmptyStateComponent/index.tsx +++ b/src/components/EmptyStateComponent/index.tsx @@ -26,6 +26,7 @@ function EmptyStateComponent({ headerStyles, headerContentStyles, lottieWebViewStyles, + showsVerticalScrollIndicator, minModalHeight = 400, }: EmptyStateComponentProps) { const styles = useThemeStyles(); @@ -83,6 +84,7 @@ function EmptyStateComponent({ return ( diff --git a/src/components/EmptyStateComponent/types.ts b/src/components/EmptyStateComponent/types.ts index a3778459b2e6..40ca760fc49f 100644 --- a/src/components/EmptyStateComponent/types.ts +++ b/src/components/EmptyStateComponent/types.ts @@ -23,6 +23,7 @@ type SharedProps = { headerContentStyles?: StyleProp; lottieWebViewStyles?: React.CSSProperties | undefined; minModalHeight?: number; + showsVerticalScrollIndicator?: boolean; }; type MediaType = SharedProps & { diff --git a/src/pages/Search/EmptySearchView.tsx b/src/pages/Search/EmptySearchView.tsx index 16d72818f936..f5687c09bd8d 100644 --- a/src/pages/Search/EmptySearchView.tsx +++ b/src/pages/Search/EmptySearchView.tsx @@ -241,6 +241,7 @@ function EmptySearchView({type, hasResults}: EmptySearchViewProps) { <>