[Fix] iOS crash on onboarding without biometrics (#15688)
This commit is contained in:
parent
14653f387b
commit
7c54537cb3
|
@ -105,7 +105,10 @@
|
||||||
:previewPrivacy config/blank-preview?}]
|
:previewPrivacy config/blank-preview?}]
|
||||||
{effect request
|
{effect request
|
||||||
:dispatch [:navigate-to :generating-keys]
|
:dispatch [:navigate-to :generating-keys]
|
||||||
:db (assoc db :onboarding-2/new-account? true)}))
|
:db (-> db
|
||||||
|
(dissoc :multiaccounts/login)
|
||||||
|
(dissoc :auth-method)
|
||||||
|
(assoc :onboarding-2/new-account? true))}))
|
||||||
|
|
||||||
(rf/defn on-delete-profile-success
|
(rf/defn on-delete-profile-success
|
||||||
{:events [:onboarding-2/on-delete-profile-success]}
|
{:events [:onboarding-2/on-delete-profile-success]}
|
||||||
|
|
Loading…
Reference in New Issue