aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth
diff options
context:
space:
mode:
authorLibravatar André Oliveira <oliveira.andrerodrigues95@gmail.com>2022-05-17 08:42:04 +0100
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-05-17 06:09:18 -0500
commit6eb5937039b4d416d2c0558d3f4b29783cc6d533 (patch)
tree887f3b76e08594df5daabc7c61306b61db896d22 /src/components/auth
parent6.0.0-nightly.38 [skip ci] (diff)
downloadferdium-app-6eb5937039b4d416d2c0558d3f4b29783cc6d533.tar.gz
ferdium-app-6eb5937039b4d416d2c0558d3f4b29783cc6d533.tar.zst
ferdium-app-6eb5937039b4d416d2c0558d3f4b29783cc6d533.zip
Revert "remove duplicate Button component"
Diffstat (limited to 'src/components/auth')
-rw-r--r--src/components/auth/ChangeServer.js2
-rw-r--r--src/components/auth/Import.js2
-rw-r--r--src/components/auth/Invite.js2
-rw-r--r--src/components/auth/Locked.js2
-rw-r--r--src/components/auth/Login.js2
-rw-r--r--src/components/auth/Password.js2
-rw-r--r--src/components/auth/SetupAssistant.js2
-rw-r--r--src/components/auth/Signup.js2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/components/auth/ChangeServer.js b/src/components/auth/ChangeServer.js
index 61e0aed68..a7aa33ab1 100644
--- a/src/components/auth/ChangeServer.js
+++ b/src/components/auth/ChangeServer.js
@@ -5,7 +5,7 @@ import { defineMessages, injectIntl } from 'react-intl';
5import Form from '../../lib/Form'; 5import Form from '../../lib/Form';
6import Input from '../ui/Input'; 6import Input from '../ui/Input';
7import Select from '../ui/Select'; 7import Select from '../ui/Select';
8import Button from '../ui/button'; 8import Button from '../ui/Button';
9import Link from '../ui/Link'; 9import Link from '../ui/Link';
10import Infobox from '../ui/Infobox'; 10import Infobox from '../ui/Infobox';
11import { url, required } from '../../helpers/validation-helpers'; 11import { url, required } from '../../helpers/validation-helpers';
diff --git a/src/components/auth/Import.js b/src/components/auth/Import.js
index e43be07a8..e7d5731f9 100644
--- a/src/components/auth/Import.js
+++ b/src/components/auth/Import.js
@@ -7,7 +7,7 @@ import classnames from 'classnames';
7 7
8import Form from '../../lib/Form'; 8import Form from '../../lib/Form';
9import Toggle from '../ui/Toggle'; 9import Toggle from '../ui/Toggle';
10import Button from '../ui/button'; 10import Button from '../ui/Button';
11import { H1 } from '../ui/headline'; 11import { H1 } from '../ui/headline';
12 12
13const messages = defineMessages({ 13const messages = defineMessages({
diff --git a/src/components/auth/Invite.js b/src/components/auth/Invite.js
index 8e1ab514e..84adb320f 100644
--- a/src/components/auth/Invite.js
+++ b/src/components/auth/Invite.js
@@ -10,7 +10,7 @@ import Appear from '../ui/effects/Appear';
10import Form from '../../lib/Form'; 10import Form from '../../lib/Form';
11import { email } from '../../helpers/validation-helpers'; 11import { email } from '../../helpers/validation-helpers';
12import Input from '../ui/Input'; 12import Input from '../ui/Input';
13import Button from '../ui/button'; 13import Button from '../ui/Button';
14import { H1 } from '../ui/headline'; 14import { H1 } from '../ui/headline';
15 15
16const messages = defineMessages({ 16const messages = defineMessages({
diff --git a/src/components/auth/Locked.js b/src/components/auth/Locked.js
index 90ee46722..710810f2b 100644
--- a/src/components/auth/Locked.js
+++ b/src/components/auth/Locked.js
@@ -6,7 +6,7 @@ import { defineMessages, injectIntl } from 'react-intl';
6 6
7import Form from '../../lib/Form'; 7import Form from '../../lib/Form';
8import Input from '../ui/Input'; 8import Input from '../ui/Input';
9import Button from '../ui/button'; 9import Button from '../ui/Button';
10import { H1 } from '../ui/headline'; 10import { H1 } from '../ui/headline';
11import { isMac } from '../../environment'; 11import { isMac } from '../../environment';
12 12
diff --git a/src/components/auth/Login.js b/src/components/auth/Login.js
index c6b26a21d..f1c58a020 100644
--- a/src/components/auth/Login.js
+++ b/src/components/auth/Login.js
@@ -9,7 +9,7 @@ import { 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 Input from '../ui/Input'; 11import Input from '../ui/Input';
12import Button from '../ui/button'; 12import Button from '../ui/Button';
13import Link from '../ui/Link'; 13import Link from '../ui/Link';
14 14
15import { globalError as globalErrorPropType } from '../../prop-types'; 15import { globalError as globalErrorPropType } from '../../prop-types';
diff --git a/src/components/auth/Password.js b/src/components/auth/Password.js
index 0daa4c77a..0e87cb028 100644
--- a/src/components/auth/Password.js
+++ b/src/components/auth/Password.js
@@ -6,7 +6,7 @@ import { defineMessages, injectIntl } from 'react-intl';
6import Form from '../../lib/Form'; 6import Form from '../../lib/Form';
7import { required, email } from '../../helpers/validation-helpers'; 7import { required, email } from '../../helpers/validation-helpers';
8import Input from '../ui/Input'; 8import Input from '../ui/Input';
9import Button from '../ui/button'; 9import Button from '../ui/Button';
10import Link from '../ui/Link'; 10import Link from '../ui/Link';
11import Infobox from '../ui/Infobox'; 11import Infobox from '../ui/Infobox';
12import globalMessages from '../../i18n/globalMessages'; 12import globalMessages from '../../i18n/globalMessages';
diff --git a/src/components/auth/SetupAssistant.js b/src/components/auth/SetupAssistant.js
index 7658eb1ff..90f6733a6 100644
--- a/src/components/auth/SetupAssistant.js
+++ b/src/components/auth/SetupAssistant.js
@@ -6,7 +6,7 @@ import injectSheet from 'react-jss';
6import classnames from 'classnames'; 6import classnames from 'classnames';
7 7
8import { Input } from '../ui/input/index'; 8import { Input } from '../ui/input/index';
9import Button from '../ui/button'; 9import { Button } from '../ui/button/index';
10import { Badge } from '../ui/badge'; 10import { Badge } from '../ui/badge';
11import Modal from '../ui/Modal'; 11import Modal from '../ui/Modal';
12import * as Infobox from '../ui/Infobox'; 12import * as Infobox from '../ui/Infobox';
diff --git a/src/components/auth/Signup.js b/src/components/auth/Signup.js
index 05b6576fa..930b24491 100644
--- a/src/components/auth/Signup.js
+++ b/src/components/auth/Signup.js
@@ -7,7 +7,7 @@ import { defineMessages, injectIntl } from 'react-intl';
7import Form from '../../lib/Form'; 7import Form from '../../lib/Form';
8import { required, email, minLength } from '../../helpers/validation-helpers'; 8import { required, email, minLength } from '../../helpers/validation-helpers';
9import Input from '../ui/Input'; 9import Input from '../ui/Input';
10import Button from '../ui/button'; 10import Button from '../ui/Button';
11import Link from '../ui/Link'; 11import Link from '../ui/Link';
12 12
13import { globalError as globalErrorPropType } from '../../prop-types'; 13import { globalError as globalErrorPropType } from '../../prop-types';