aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
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
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')
-rw-r--r--src/components/auth/Login.js3
-rw-r--r--src/components/auth/Signup.js2
2 files changed, 1 insertions, 4 deletions
diff --git a/src/components/auth/Login.js b/src/components/auth/Login.js
index cce2b4fa7..684b2f6f3 100644
--- a/src/components/auth/Login.js
+++ b/src/components/auth/Login.js
@@ -5,14 +5,13 @@ import { observer, inject } from 'mobx-react';
5import { defineMessages, injectIntl } from 'react-intl'; 5import { defineMessages, injectIntl } from 'react-intl';
6 6
7import { LIVE_FRANZ_API } from '../../config'; 7import { LIVE_FRANZ_API } from '../../config';
8import { API_VERSION, isDevMode, useLiveAPI } from '../../environment-remote'; 8import { API_VERSION } from '../../environment-remote';
9import Form from '../../lib/Form'; 9import Form from '../../lib/Form';
10import { required, email } from '../../helpers/validation-helpers'; 10import { required, email } from '../../helpers/validation-helpers';
11import serverlessLogin from '../../helpers/serverless-helpers'; 11import serverlessLogin from '../../helpers/serverless-helpers';
12import Input from '../ui/Input'; 12import Input from '../ui/Input';
13import Button from '../ui/Button'; 13import Button from '../ui/Button';
14import Link from '../ui/Link'; 14import Link from '../ui/Link';
15import Infobox from '../ui/Infobox';
16 15
17import { globalError as globalErrorPropType } from '../../prop-types'; 16import { globalError as globalErrorPropType } from '../../prop-types';
18 17
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';