chore: Move to prettier standard double quotes (#1309)
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
// @flow
|
||||
import * as React from 'react';
|
||||
import { observable } from 'mobx';
|
||||
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';
|
||||
import * as React from "react";
|
||||
import { observable } from "mobx";
|
||||
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 = {
|
||||
auth: AuthStore,
|
||||
@@ -47,7 +47,7 @@ class UserDelete extends React.Component<Props> {
|
||||
be automatically reprovisioned.
|
||||
</HelpText>
|
||||
<Button type="submit" danger>
|
||||
{this.isDeleting ? 'Deleting…' : 'Delete My Account'}
|
||||
{this.isDeleting ? "Deleting…" : "Delete My Account"}
|
||||
</Button>
|
||||
</form>
|
||||
</Flex>
|
||||
@@ -56,4 +56,4 @@ class UserDelete extends React.Component<Props> {
|
||||
}
|
||||
}
|
||||
|
||||
export default inject('auth')(UserDelete);
|
||||
export default inject("auth")(UserDelete);
|
||||
|
||||
Reference in New Issue
Block a user