Skip to content

Commit

Permalink
Fix home page layout
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-phillips-18 committed Aug 21, 2024
1 parent 4ef9c1c commit dd0cb20
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/pages/home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as React from 'react';
import {

Check failure on line 2 in frontend/src/pages/home/Home.tsx

View workflow job for this annotation

GitHub Actions / Tests (18.x)

Replace `⏎··Bullseye,⏎··EmptyState,⏎··PageSection,⏎··PageSectionVariants,⏎` with `·Bullseye,·EmptyState,·PageSection,·PageSectionVariants·`
Bullseye,
EmptyState,
Page,
PageSection,
PageSectionVariants,
} from '@patternfly/react-core';
Expand All @@ -23,7 +22,7 @@ const Home: React.FC = () => {
const enableTeamSection = useEnableTeamSection();

return (
<Page data-testid="home-page">
<div data-testid="home-page">
<HomeHint />
{!projectsAvailable && !aiFlows && !resourcesSection && !enableTeamSection ? (
<PageSection
Expand All @@ -48,7 +47,7 @@ const Home: React.FC = () => {
{enableTeamSection}
</>
)}
</Page>
</div>
);
};

Expand Down

0 comments on commit dd0cb20

Please sign in to comment.