diff --git a/src/components/MoneyRequestReportView/MoneyRequestReportView.tsx b/src/components/MoneyRequestReportView/MoneyRequestReportView.tsx
index 968b4e0e4dca..06f38543b0de 100644
--- a/src/components/MoneyRequestReportView/MoneyRequestReportView.tsx
+++ b/src/components/MoneyRequestReportView/MoneyRequestReportView.tsx
@@ -67,13 +67,13 @@ function goBackFromSearchMoneyRequest() {
Navigation.goBack(ROUTES.SEARCH_ROOT.getRoute({query: buildCannedSearchQuery()}));
}
-function InitialLoadingSkeleton({styles}: {styles: ThemeStyles}) {
+function InitialLoadingSkeleton({styles, shouldAnimate}: {styles: ThemeStyles; shouldAnimate: boolean}) {
return (
{}} />
-
+
);
}
@@ -179,7 +179,12 @@ function MoneyRequestReportView({report, policy, reportMetadata, shouldDisplayRe
);
if (!!(isLoadingInitialReportActions && reportActions.length === 0 && !isOffline) || shouldWaitForData) {
- return ;
+ return (
+
+ );
}
if (reportActions.length === 0) {