Skip to content

Commit

Permalink
fix: Correct containers and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjon3s committed Jul 9, 2024
1 parent ba5def5 commit c6ea914
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import Box from "@mui/material/Box";
import Container from "@mui/material/Container";
import Typography from "@mui/material/Typography";
import React from "react";
import { FeaturePlaceholder } from "ui/editor/FeaturePlaceholder";
import SettingsSection from "ui/editor/SettingsSection";

const DataManagerSettings: React.FC = () => {
return (
<Box maxWidth="formWrap" mx="auto">
<Container maxWidth="formWrap">
<SettingsSection>
<Typography variant="h2" component="h3" gutterBottom>
Data Manager
Expand All @@ -19,7 +19,7 @@ const DataManagerSettings: React.FC = () => {
<SettingsSection>
<FeaturePlaceholder title="Feature in development" />
</SettingsSection>
</Box>
</Container>
);
};
export default DataManagerSettings;
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Alert from "@mui/material/Alert";
import Box from "@mui/material/Box";
import Container from "@mui/material/Container";
import Snackbar from "@mui/material/Snackbar";
import Typography from "@mui/material/Typography";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import Box from "@mui/material/Box";
import Container from "@mui/material/Container";
import Typography from "@mui/material/Typography";
import React from "react";
import { FeaturePlaceholder } from "ui/editor/FeaturePlaceholder";
import SettingsSection from "ui/editor/SettingsSection";

const ServiceFlags: React.FC = () => {
return (
<Box maxWidth="formWrap" mx="auto">
<Container maxWidth="formWrap">
<SettingsSection>
<Typography variant="h2" component="h3" gutterBottom>
Service flags
Expand All @@ -19,7 +19,7 @@ const ServiceFlags: React.FC = () => {
<SettingsSection>
<FeaturePlaceholder title="Feature in development" />
</SettingsSection>
</Box>
</Container>
);
};
export default ServiceFlags;

0 comments on commit c6ea914

Please sign in to comment.