Skip to content
Snippets Groups Projects
Unverified Commit 48a78770 authored by Martin Schoeler's avatar Martin Schoeler Committed by GitHub
Browse files

regression: Marketplace page padding issue (#33784)

parent 5d236fa4
No related branches found
No related tags found
No related merge requests found
......@@ -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 (
<PageContent>
<>
<MarketplaceHeader unsupportedVersion={unsupportedVersion} title={t(`Apps_context_${context}`)} />
<AppsFilters
setText={setText}
freePaidFilterStructure={freePaidFilterStructure}
......@@ -257,7 +255,7 @@ const AppsPageContent = (): ReactElement => {
)}
{getEmptyState()}
{appsResult.phase === AsyncStatePhase.REJECTED && !unsupportedVersion && <AppsPageConnectionError onButtonClick={reload} />}
</PageContent>
</>
);
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment