aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/LoginScreen.js
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-06-23 20:39:18 +0530
committerLibravatar GitHub <noreply@github.com>2021-06-23 17:09:18 +0200
commit4d26ffd4805c234e4b0592ae5aa9254e8c3206fd (patch)
tree6e1e9dd01f53677c40482e45cea3646e952750a9 /src/containers/auth/LoginScreen.js
parentAdded new message when the user doesn't find a service (but that is present i... (diff)
downloadferdium-app-4d26ffd4805c234e4b0592ae5aa9254e8c3206fd.tar.gz
ferdium-app-4d26ffd4805c234e4b0592ae5aa9254e8c3206fd.tar.zst
ferdium-app-4d26ffd4805c234e4b0592ae5aa9254e8c3206fd.zip
Upgraded eslint and fixed all the reported errors. (#1549)
Diffstat (limited to 'src/containers/auth/LoginScreen.js')
-rw-r--r--src/containers/auth/LoginScreen.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/containers/auth/LoginScreen.js b/src/containers/auth/LoginScreen.js
index d17820ad6..e636f99e0 100644
--- a/src/containers/auth/LoginScreen.js
+++ b/src/containers/auth/LoginScreen.js
@@ -30,9 +30,7 @@ export default @inject('stores', 'actions') @observer class LoginScreen extends
30 30
31LoginScreen.wrappedComponent.propTypes = { 31LoginScreen.wrappedComponent.propTypes = {
32 actions: PropTypes.shape({ 32 actions: PropTypes.shape({
33 user: PropTypes.shape({ 33 user: PropTypes.instanceOf(UserStore).isRequired,
34 login: PropTypes.func.isRequired,
35 }).isRequired,
36 }).isRequired, 34 }).isRequired,
37 stores: PropTypes.shape({ 35 stores: PropTypes.shape({
38 user: PropTypes.instanceOf(UserStore).isRequired, 36 user: PropTypes.instanceOf(UserStore).isRequired,