From 48a787708c1b3801e82f9eeebd85075e0b001e39 Mon Sep 17 00:00:00 2001 From: Martin Schoeler Date: Fri, 25 Oct 2024 14:52:04 -0300 Subject: [PATCH] regression: Marketplace page padding issue (#33784) --- .../client/views/marketplace/AppsPage/AppsPageContent.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/meteor/client/views/marketplace/AppsPage/AppsPageContent.tsx b/apps/meteor/client/views/marketplace/AppsPage/AppsPageContent.tsx index 23446b0da208..15ee5c5ba692 100644 --- a/apps/meteor/client/views/marketplace/AppsPage/AppsPageContent.tsx +++ b/apps/meteor/client/views/marketplace/AppsPage/AppsPageContent.tsx @@ -4,7 +4,6 @@ import type { ReactElement } from 'react'; import React, { useEffect, useMemo, useState, useCallback } from 'react'; import { usePagination } from '../../../components/GenericTable/hooks/usePagination'; -import { PageContent } from '../../../components/Page'; import { useAppsResult } from '../../../contexts/hooks/useAppsResult'; import { AsyncStatePhase } from '../../../lib/asyncState'; import MarketplaceHeader from '../components/MarketplaceHeader'; @@ -224,9 +223,8 @@ const AppsPageContent = (): ReactElement => { }; return ( - + <> - { )} {getEmptyState()} {appsResult.phase === AsyncStatePhase.REJECTED && !unsupportedVersion && } - + ); };