Skip to content

Commit

Permalink
fix: add back flex container.
Browse files Browse the repository at this point in the history
The flex styling was deleted by mistake. This adds it back in.
  • Loading branch information
thomasheartman committed Oct 3, 2024
1 parent 415e348 commit e198413
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/src/component/personalDashboard/MyProjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit e198413

Please sign in to comment.