diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-03-15 22:08:06 +0000 |
---|---|---|
committer | Samuel Newman <mozzius@protonmail.com> | 2024-03-15 22:08:06 +0000 |
commit | d2a11f3344149a299372f0a7dcd01de9f58ef9a1 (patch) | |
tree | bae6f819ced9011bd8d9e8defe6576d807999a59 | |
parent | 273fe3e8e9f3ba1807d9f5163c02db9db58b0c22 (diff) | |
download | voidsky-d2a11f3344149a299372f0a7dcd01de9f58ef9a1.tar.zst |
translate error
-rw-r--r-- | src/screens/Login/SetNewPasswordForm.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/screens/Login/SetNewPasswordForm.tsx b/src/screens/Login/SetNewPasswordForm.tsx index 0bfe72244..be0732483 100644 --- a/src/screens/Login/SetNewPasswordForm.tsx +++ b/src/screens/Login/SetNewPasswordForm.tsx @@ -73,7 +73,9 @@ export const SetNewPasswordForm = ({ setIsProcessing(false) if (isNetworkError(e)) { setError( - 'Unable to contact your service. Please check your Internet connection.', + _( + msg`Unable to contact your service. Please check your Internet connection.`, + ), ) } else { setError(cleanError(errMsg)) |