Skip to content

Commit

Permalink
feat: [M3-6468] address feedback: migrate LandingHeader from legacy grid
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly-akamai committed May 11, 2023
1 parent 5ebc844 commit ca0edca
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
BreadcrumbProps,
} from 'src/components/Breadcrumb/Breadcrumb';
import DocsLink from '../DocsLink';
import Grid from '@mui/material/Grid';
import Grid from '@mui/material/Unstable_Grid2';
import { useTheme, styled } from '@mui/material/styles';

export interface Props {
Expand Down Expand Up @@ -70,7 +70,7 @@ export const LandingHeader = ({
justifyContent="space-between"
alignItems="center"
>
<Grid item>
<Grid>
<Breadcrumb
data-qa-title
labelTitle={labelTitle}
Expand All @@ -82,8 +82,8 @@ export const LandingHeader = ({
/>
</Grid>
{!shouldHideDocsAndCreateButtons && (
<Grid item>
<Grid alignItems="center" container item justifyContent="flex-end">
<Grid>
<Grid alignItems="center" container justifyContent="flex-end">
{docsLink ? (
<DocsLink
href={docsLink}
Expand Down

0 comments on commit ca0edca

Please sign in to comment.