From 580e12b6058e2d13f869667e7c2f58656db315d2 Mon Sep 17 00:00:00 2001 From: Simon Caron <8635747+simoncaron@users.noreply.github.com> Date: Sun, 12 Jan 2025 19:04:51 -0500 Subject: [PATCH] Alert --- app/login.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/login.tsx b/app/login.tsx index 3e5b916e..08c24075 100644 --- a/app/login.tsx +++ b/app/login.tsx @@ -102,7 +102,7 @@ const CredentialsSchema = z.object({ if (error instanceof Error) { Alert.alert(t("login.connection_failed"), error.message); } else { - Alert.alert(t("login.connection_failed"), t("login.an_unexpeted_error_occured")); + Alert.alert(t("login.connection_failed"), t("login.an_unexpected_error_occured")); } } finally { setLoading(false);