aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-14 19:19:18 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-14 19:19:18 +0100
commit4b84392b69e331e6a53f1d843db901042ea37373 (patch)
treea1475e14b788abd0b11f2c86cfb1bc00aec23ce4 /src/components/auth
parentRemove duplicated auth__container in Lock screen (diff)
downloadferdium-app-4b84392b69e331e6a53f1d843db901042ea37373.tar.gz
ferdium-app-4b84392b69e331e6a53f1d843db901042ea37373.tar.zst
ferdium-app-4b84392b69e331e6a53f1d843db901042ea37373.zip
Start removing superfluous text
Diffstat (limited to 'src/components/auth')
-rw-r--r--src/components/auth/Locked.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/components/auth/Locked.js b/src/components/auth/Locked.js
index 2ed429199..ac1bc4e8c 100644
--- a/src/components/auth/Locked.js
+++ b/src/components/auth/Locked.js
@@ -7,7 +7,6 @@ import { defineMessages, injectIntl } from 'react-intl';
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 Infobox from '../ui/Infobox';
11import { isMac } from '../../environment'; 10import { isMac } from '../../environment';
12 11
13import { globalError as globalErrorPropType } from '../../prop-types'; 12import { globalError as globalErrorPropType } from '../../prop-types';
@@ -17,11 +16,6 @@ const messages = defineMessages({
17 id: 'locked.headline', 16 id: 'locked.headline',
18 defaultMessage: 'Locked', 17 defaultMessage: 'Locked',
19 }, 18 },
20 info: {
21 id: 'locked.info',
22 defaultMessage:
23 'Ferdi is currently locked. Please unlock Ferdi with your password to see your messages.',
24 },
25 touchId: { 19 touchId: {
26 id: 'locked.touchId', 20 id: 'locked.touchId',
27 defaultMessage: 'Unlock with Touch ID', 21 defaultMessage: 'Unlock with Touch ID',
@@ -107,7 +101,6 @@ class Locked extends Component {
107 <form className="franz-form auth__form" onSubmit={e => this.submit(e)}> 101 <form className="franz-form auth__form" onSubmit={e => this.submit(e)}>
108 <img src="./assets/images/logo.svg" className="auth__logo" alt="" /> 102 <img src="./assets/images/logo.svg" className="auth__logo" alt="" />
109 <h1>{intl.formatMessage(messages.headline)}</h1> 103 <h1>{intl.formatMessage(messages.headline)}</h1>
110 <Infobox type="warning">{intl.formatMessage(messages.info)}</Infobox>
111 104
112 {touchIdEnabled && ( 105 {touchIdEnabled && (
113 <> 106 <>