1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +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'>
<Typography variant='h3'>My projects</Typography>
</SpacedGridItem>
<SpacedGridItem gridArea='onboarding'>
<SpacedGridItem
gridArea='onboarding'
sx={{
display: 'flex',
justifyContent: 'flex-end',
}}
>
{setupIncomplete ? (
<Badge color='warning'>Setup incomplete</Badge>
) : null}