1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

fix: add back flex container. (#8356)

The flex styling was deleted by mistake. This adds it back in.
This commit is contained in:
Thomas Heartman 2024-10-03 14:23:38 +02:00 committed by GitHub
parent 0077a56ef6
commit aec888a160
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -85,7 +85,13 @@ export const MyProjects: FC<{
<SpacedGridItem gridArea='title'> <SpacedGridItem gridArea='title'>
<Typography variant='h3'>My projects</Typography> <Typography variant='h3'>My projects</Typography>
</SpacedGridItem> </SpacedGridItem>
<SpacedGridItem gridArea='onboarding'> <SpacedGridItem
gridArea='onboarding'
sx={{
display: 'flex',
justifyContent: 'flex-end',
}}
>
{setupIncomplete ? ( {setupIncomplete ? (
<Badge color='warning'>Setup incomplete</Badge> <Badge color='warning'>Setup incomplete</Badge>
) : null} ) : null}