We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b7996b commit fae4449Copy full SHA for fae4449
src/components/Person.tsx
@@ -80,7 +80,7 @@ export const Administration = () => {
80
<Grid columns={useGrid ? 12 : 6} container margin={0} spacing={4} width={1}>
81
{administration &&
82
administration.map((person) => (
83
- <Grid key={`AdministrationGridItem-${person.names.first}`} xs={6}>
+ <Grid key={`AdministrationGridItem-${person.names.first}`} size={{ xs: 6 }}>
84
<Person embeddedIn="Administration" person={person} sx={{ alignItems: "center", height: "100%", p: 2 }} />
85
</Grid>
86
))}
0 commit comments