From abc1328cac06cfd53a044b53d822be08d7e53598 Mon Sep 17 00:00:00 2001 From: Ionatan Wiznia Date: Thu, 20 Mar 2025 16:13:56 +0100 Subject: [PATCH] Revert "fix: always render the skeleton when fetching report actions" --- src/pages/home/report/ReportActionsView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/home/report/ReportActionsView.tsx b/src/pages/home/report/ReportActionsView.tsx index 8e95d300ca6c4..f5b6f04b5a2d2 100755 --- a/src/pages/home/report/ReportActionsView.tsx +++ b/src/pages/home/report/ReportActionsView.tsx @@ -270,7 +270,7 @@ function ReportActionsView({ }; }, [isTheFirstReportActionIsLinked]); - if (isLoadingInitialReportActions && !isOffline) { + if (isLoadingInitialReportActions && visibleReportActions.length === 0 && !isOffline) { return ; }