aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-05-26 17:32:33 -0300
committerSebastian <sebasjm@gmail.com>2023-05-26 17:32:33 -0300
commitf5f3d3e23cac9c425c20019cb89baa212154f2ed (patch)
tree621a8dec89dd227c66121a871330259a5973b1cf /packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx
parent8d85426f0e0ceec5297f43f5688d0d9bc4aa4a71 (diff)
downloadwallet-core-f5f3d3e23cac9c425c20019cb89baa212154f2ed.tar.xz
compute some error on submit
Diffstat (limited to 'packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx')
-rw-r--r--packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx b/packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx
index 74cb0d056..2ebac0718 100644
--- a/packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx
+++ b/packages/exchange-backoffice-ui/src/pages/UnlockAccount.tsx
@@ -32,7 +32,7 @@ export function UnlockAccount({
<Form.Provider
onSubmit={async (v) => {
try {
- await onAccountUnlocked(v.password);
+ await onAccountUnlocked(v.password!);
notifyInfo("Account unlocked" as TranslatedString);
} catch (e) {