Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/Organization/OrgUsers/OrgDelete.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ function OrgDelete() {
return (
<React.Fragment>
<Paper elevation={0} className={classes.root} data-testid="org-delete">

<Grid container className={classes.gridPadding}>
<Grid container direction="row">
<Grid item container xs={12} md={10} direction="column">
Expand Down
5 changes: 1 addition & 4 deletions src/components/Organization/OrgUsers/OrgDeleteModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ import { useHistory } from "react-router-dom";
import { deleteOrganization } from "../../../store/actions/orgActions";

const useStyles = makeStyles(theme => ({
root: {
width: "100%"
},
input: {
marginTop: "15px"
},
Expand Down Expand Up @@ -61,7 +58,7 @@ function OrgDeleteModal() {
Are you sure you want to delete {CurrentOrg?.org_name}?
</DialogTitle>

<DialogContent className={classes.root}>
<DialogContent>
<Typography>
This action cannot be <strong>undone</strong>. This will delete all
the data associated with this organization.
Expand Down