aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth
diff options
context:
space:
mode:
authorLibravatar Santhosh C <csesanthosh15@gmail.com>2022-05-18 23:33:07 +0530
committerLibravatar GitHub <noreply@github.com>2022-05-18 13:03:07 -0500
commit3c9f6f1f9d44ac484e0e76f5cd0563f76461ca9b (patch)
treee39a37a28846cda6ca30baf0a74663b97932751e /src/components/auth
parent6.0.0-nightly.40 [skip ci] (diff)
downloadferdium-app-3c9f6f1f9d44ac484e0e76f5cd0563f76461ca9b.tar.gz
ferdium-app-3c9f6f1f9d44ac484e0e76f5cd0563f76461ca9b.tar.zst
ferdium-app-3c9f6f1f9d44ac484e0e76f5cd0563f76461ca9b.zip
Remove duplicated Button.js component (#176)
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 a7aa33ab1..61e0aed68 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 e7d5731f9..e43be07a8 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 84adb320f..8e1ab514e 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 710810f2b..90ee46722 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 f1c58a020..c6b26a21d 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 0e87cb028..0daa4c77a 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 90f6733a6..7658eb1ff 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/index'; 9import Button from '../ui/button';
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 930b24491..05b6576fa 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';