aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth/Signup.js
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-13 04:27:07 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-13 04:27:07 +0100
commit18ba22625f36d96d2fc0ae7db9f01f0e2c06c331 (patch)
treeaec500283b8d3068cd448445748cfac760e22913 /src/components/auth/Signup.js
parentGracefully handle edge case showing both hibernating and loading state (diff)
downloadferdium-app-18ba22625f36d96d2fc0ae7db9f01f0e2c06c331.tar.gz
ferdium-app-18ba22625f36d96d2fc0ae7db9f01f0e2c06c331.tar.zst
ferdium-app-18ba22625f36d96d2fc0ae7db9f01f0e2c06c331.zip
Fix linting
Diffstat (limited to 'src/components/auth/Signup.js')
-rw-r--r--src/components/auth/Signup.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/auth/Signup.js b/src/components/auth/Signup.js
index 5f879fb01..6526264e0 100644
--- a/src/components/auth/Signup.js
+++ b/src/components/auth/Signup.js
@@ -4,14 +4,12 @@ import PropTypes from 'prop-types';
4import { observer, inject } from 'mobx-react'; 4import { observer, inject } from 'mobx-react';
5import { defineMessages, injectIntl } from 'react-intl'; 5import { defineMessages, injectIntl } from 'react-intl';
6 6
7import { isDevMode, useLiveAPI } from '../../environment-remote';
8import Form from '../../lib/Form'; 7import Form from '../../lib/Form';
9import { required, email, minLength } from '../../helpers/validation-helpers'; 8import { required, email, minLength } from '../../helpers/validation-helpers';
10import serverlessLogin from '../../helpers/serverless-helpers'; 9import serverlessLogin from '../../helpers/serverless-helpers';
11import Input from '../ui/Input'; 10import Input from '../ui/Input';
12import Button from '../ui/Button'; 11import Button from '../ui/Button';
13import Link from '../ui/Link'; 12import Link from '../ui/Link';
14import Infobox from '../ui/Infobox';
15 13
16import { globalError as globalErrorPropType } from '../../prop-types'; 14import { globalError as globalErrorPropType } from '../../prop-types';
17import { termsBase } from '../../api/apiBase'; 15import { termsBase } from '../../api/apiBase';