aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth/Password.tsx
diff options
context:
space:
mode:
authorLibravatar muhamedsalih-tw <104364298+muhamedsalih-tw@users.noreply.github.com>2022-12-01 00:33:39 +0530
committerLibravatar GitHub <noreply@github.com>2022-11-30 19:03:39 +0000
commit6df93308d7a93cccb281f3e979668df23007ab5d (patch)
tree7cce68384707b3bec22c1b5f7b37b9be63bb1ce8 /src/components/auth/Password.tsx
parentfix: [#809] unable to save custom icon for any service (#811) (diff)
downloadferdium-app-6df93308d7a93cccb281f3e979668df23007ab5d.tar.gz
ferdium-app-6df93308d7a93cccb281f3e979668df23007ab5d.tar.zst
ferdium-app-6df93308d7a93cccb281f3e979668df23007ab5d.zip
chore: [#42] use noop consistently throughout (#808)
Diffstat (limited to 'src/components/auth/Password.tsx')
-rw-r--r--src/components/auth/Password.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/auth/Password.tsx b/src/components/auth/Password.tsx
index 53fdbf842..03adc3859 100644
--- a/src/components/auth/Password.tsx
+++ b/src/components/auth/Password.tsx
@@ -71,7 +71,7 @@ class Password extends Component<IProps> {
71 onSuccess: form => { 71 onSuccess: form => {
72 this.props.onSubmit(form.values()); 72 this.props.onSubmit(form.values());
73 }, 73 },
74 onError: () => {}, 74 onError: noop,
75 }); 75 });
76 } 76 }
77 77