Skip to content

Commit

Permalink
Remove superfluous container from OnIncompatibleSchemaChange
Browse files Browse the repository at this point in the history
  • Loading branch information
kiahna-tucker committed Nov 22, 2024
1 parent f420f08 commit 0a54cf6
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions src/components/materialization/OnIncompatibleSchemaChange/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,23 @@ function OnIncompatibleSchemaChange() {

return (
<Box sx={{ mt: 3, mb: 5 }}>
<Stack>
<Stack spacing={1} sx={{ mb: 1 }}>
<Stack direction="row">
<Typography variant="formSectionHeader">
{intl.formatMessage({
id: 'incompatibleSchemaChange.header',
})}
</Typography>
</Stack>

<Typography>
<Stack spacing={1} sx={{ mb: 1 }}>
<Stack direction="row">
<Typography variant="formSectionHeader">
{intl.formatMessage({
id: 'incompatibleSchemaChange.message.specificationSetting',
id: 'incompatibleSchemaChange.header',
})}
</Typography>
</Stack>

<OnIncompatibleSchemaChangeForm />
<Typography>
{intl.formatMessage({
id: 'incompatibleSchemaChange.message.specificationSetting',
})}
</Typography>
</Stack>

<OnIncompatibleSchemaChangeForm />
</Box>
);
}
Expand Down

0 comments on commit 0a54cf6

Please sign in to comment.