aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-05 08:45:37 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-08-05 08:45:37 +0530
commit3336789ba527e0421d0718834afdffd0f85c3b10 (patch)
treebab95c24baa1454eac0091f5f6726647519b8d38 /src/components
parentUpdated 'CHANGELOG.md'. [skip ci] (diff)
downloadferdium-app-3336789ba527e0421d0718834afdffd0f85c3b10.tar.gz
ferdium-app-3336789ba527e0421d0718834afdffd0f85c3b10.tar.zst
ferdium-app-3336789ba527e0421d0718834afdffd0f85c3b10.zip
refactor: minor refactoring: solve name-clash of env vars vs vars in the program
Diffstat (limited to 'src/components')
-rw-r--r--src/components/auth/Signup.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/auth/Signup.js b/src/components/auth/Signup.js
index 411b6697b..6fb41a164 100644
--- a/src/components/auth/Signup.js
+++ b/src/components/auth/Signup.js
@@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
4import { observer, inject } from 'mobx-react'; 4import { observer, inject } from 'mobx-react';
5import { defineMessages, intlShape } from 'react-intl'; 5import { defineMessages, intlShape } from 'react-intl';
6 6
7import { isDevMode, termsBase, useLiveAPI } from '../../environment'; 7import { isDevMode, useLiveAPI } from '../../environment';
8import Form from '../../lib/Form'; 8import Form from '../../lib/Form';
9import { required, email, minLength } from '../../helpers/validation-helpers'; 9import { required, email, minLength } from '../../helpers/validation-helpers';
10import serverlessLogin from '../../helpers/serverless-helpers'; 10import serverlessLogin from '../../helpers/serverless-helpers';
@@ -14,6 +14,7 @@ import Link from '../ui/Link';
14import Infobox from '../ui/Infobox'; 14import Infobox from '../ui/Infobox';
15 15
16import { globalError as globalErrorPropType } from '../../prop-types'; 16import { globalError as globalErrorPropType } from '../../prop-types';
17import { termsBase } from '../../api/apiBase';
17 18
18const messages = defineMessages({ 19const messages = defineMessages({
19 headline: { 20 headline: {