mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-24 14:28:34 +00:00
fix ios keycard recovery pin error (#13924)
(cherry picked from commit 409f81a6f5f3d766ed80fe740c22b4b8c79d4ce5)
This commit is contained in:
parent
5487868078
commit
1037209f5d
@ -403,9 +403,7 @@
|
||||
:import-multiaccount []
|
||||
:error-label :t/pin-mismatch))}
|
||||
(hide-connection-sheet)
|
||||
(when (zero? pin-retries-count) (frozen-keycard-popup))
|
||||
(when (= flow :import)
|
||||
(navigation/navigate-to-cofx :keycard-recovery-pin nil)))
|
||||
(when (zero? pin-retries-count) (frozen-keycard-popup)))
|
||||
(show-wrong-keycard-alert)))))
|
||||
|
||||
(fx/defn factory-reset
|
||||
|
@ -152,8 +152,8 @@
|
||||
[{:keys [retry-counter]}]
|
||||
(let [error-y-translation (animation/create-value -8)
|
||||
error-opacity (animation/create-value 0)
|
||||
retries-y-translation (animation/create-value (if retry-counter 8 0))
|
||||
retries-opacity (animation/create-value (if retry-counter 0 1))
|
||||
retries-y-translation (animation/create-value (if retry-counter 0 -8))
|
||||
retries-opacity (animation/create-value (if retry-counter 1 0))
|
||||
!error? (reagent/atom false)]
|
||||
(reagent/create-class
|
||||
{:component-did-update
|
||||
|
Loading…
x
Reference in New Issue
Block a user