Skip to content

Commit

Permalink
regression: Marketplace page padding issue (#33784)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchoeler authored Oct 25, 2024
1 parent 5d236fa commit 48a7877
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -224,9 +223,8 @@ const AppsPageContent = (): ReactElement => {
};

return (
<PageContent>
<>
<MarketplaceHeader unsupportedVersion={unsupportedVersion} title={t(`Apps_context_${context}`)} />

<AppsFilters
setText={setText}
freePaidFilterStructure={freePaidFilterStructure}
Expand Down Expand Up @@ -257,7 +255,7 @@ const AppsPageContent = (): ReactElement => {
)}
{getEmptyState()}
{appsResult.phase === AsyncStatePhase.REJECTED && !unsupportedVersion && <AppsPageConnectionError onButtonClick={reload} />}
</PageContent>
</>
);
};

Expand Down

0 comments on commit 48a7877

Please sign in to comment.