[#16335] - Add space before "Forgot password?"

* Add space before "Forgot password?"
* Improves error message
This commit is contained in:
Ulises Manuel Cárdenas 2023-06-21 17:17:01 -06:00 committed by GitHub
parent d91e67cae7
commit 83a298f831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -184,8 +184,9 @@
profile-picture (rf/sub [:multiaccounts/login-profiles-picture key-uid]) profile-picture (rf/sub [:multiaccounts/login-profiles-picture key-uid])
error (if (and (some? error) error (if (and (some? error)
(or (= error "file is not a database") (or (= error "file is not a database")
(string/starts-with? error "failed to set "))) (string/starts-with? error "failed to set ")
(i18n/label :t/wrong-password) (string/starts-with? error "Failed")))
(i18n/label :t/oops-wrong-password)
error)] error)]
[rn/keyboard-avoiding-view [rn/keyboard-avoiding-view
{:style style/login-container {:style style/login-container
@ -232,7 +233,6 @@
error] error]
[rn/touchable-opacity [rn/touchable-opacity
{:hit-slop {:top 6 :bottom 20 :left 0 :right 0} {:hit-slop {:top 6 :bottom 20 :left 0 :right 0}
:style {:margin-left -4}
:disabled processing :disabled processing
:active-opacity 1 :active-opacity 1
:on-press (fn [] :on-press (fn []