diff --git a/app/scenes/UserDelete.js b/app/scenes/UserDelete.js index 751c69d9e..a5b16b3c9 100644 --- a/app/scenes/UserDelete.js +++ b/app/scenes/UserDelete.js @@ -5,6 +5,7 @@ import { inject, observer } from 'mobx-react'; import Button from 'components/Button'; import Flex from 'shared/components/Flex'; import HelpText from 'components/HelpText'; +import Modal from 'components/Modal'; import AuthStore from 'stores/AuthStore'; type Props = { @@ -28,19 +29,23 @@ class UserDelete extends React.Component { }; render() { + const { auth, ...rest } = this.props; + return ( - -
- - Are you sure? Deleting your account will destory identifying data - associated with your user and cannot be undone. You will be - immediately logged out of Outline. - - -
-
+ + +
+ + Are you sure? Deleting your account will destory identifying data + associated with your user and cannot be undone. You will be + immediately logged out of Outline. + + +
+
+
); } }