diff --git a/packages/forklift-console-plugin/src/components/page/StandardPage.tsx b/packages/forklift-console-plugin/src/components/page/StandardPage.tsx index 55263bb47..226fecec0 100644 --- a/packages/forklift-console-plugin/src/components/page/StandardPage.tsx +++ b/packages/forklift-console-plugin/src/components/page/StandardPage.tsx @@ -333,7 +333,7 @@ export function StandardPage({ [filteredData, currentPage, itemsPerPage], ); - const errorFetchingData = loaded && error; + const errorFetchingData = error; const noResults = loaded && !error && sortedData.length == 0; const noMatchingResults = loaded && !error && filteredData.length === 0 && sortedData.length > 0; @@ -444,7 +444,7 @@ export function StandardPage({ toId={toId} expandedIds={expandedIds} > - {!loaded && } + {!loaded && !error && } {errorFetchingData && } {noResults && (customNoResultsFound ?? (