aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/PasswordScreen.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/PasswordScreen.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/PasswordScreen.js')
-rw-r--r--src/containers/auth/PasswordScreen.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/containers/auth/PasswordScreen.js b/src/containers/auth/PasswordScreen.js
index 5b238860e..9c6732f1a 100644
--- a/src/containers/auth/PasswordScreen.js
+++ b/src/containers/auth/PasswordScreen.js
@@ -22,9 +22,7 @@ export default @inject('stores', 'actions') @observer class PasswordScreen exten
22 22
23PasswordScreen.wrappedComponent.propTypes = { 23PasswordScreen.wrappedComponent.propTypes = {
24 actions: PropTypes.shape({ 24 actions: PropTypes.shape({
25 user: PropTypes.shape({ 25 user: PropTypes.instanceOf(UserStore).isRequired,
26 retrievePassword: PropTypes.func.isRequired,
27 }).isRequired,
28 }).isRequired, 26 }).isRequired,
29 stores: PropTypes.shape({ 27 stores: PropTypes.shape({
30 user: PropTypes.instanceOf(UserStore).isRequired, 28 user: PropTypes.instanceOf(UserStore).isRequired,