Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
onattech committed Apr 1, 2022
1 parent 1d83154 commit 9dde479
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions frontend/src/pages/Deployments/index.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Grid, Typography, Button, Drawer } from '@mui/material';
import { Box, Grid, Typography } from '@mui/material';
import Search from '../../components/Search';
import CustomChip from '../../components/CustomChip';
import { useGlobalEnvironmentState } from '../../components/EnviromentDropdown';
Expand Down Expand Up @@ -70,15 +70,6 @@ const Deployments = () => {
<DeploymentsTable data={deployments} filter={filter} setPipelineCount={setPipelineCount} environmentID={Environment.id.get()} getDeployments={getDeployments} />
</Grid>
</Box>

{/* <Drawer anchor="right" open={isOpenCreatePipeline} onClose={() => setIsOpenCreatePipeline(!isOpenCreatePipeline)}>
<AddPipelineDrawer
environmentID={Environment.id.get()}
handleClose={() => {
setIsOpenCreatePipeline(false);
}}
/>
</Drawer> */}
</Box>
);
};
Expand Down

0 comments on commit 9dde479

Please sign in to comment.