From b5e0364c3d008a5a04cd864cec7b5dbca80bb09c Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 12 Sep 2025 14:43:26 +0200 Subject: [PATCH] Fix the grammar in the login error message Co-authored-by: Ted Thibodeau Jr Co-authored-by: Virginia Balseiro --- src/login/login.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/login/login.ts b/src/login/login.ts index 463ea9e8a..fda765170 100644 --- a/src/login/login.ts +++ b/src/login/login.ts @@ -136,7 +136,7 @@ export async function ensureLoadedPreferences ( let m2: string if (err instanceof UnauthorizedError) { m2 = - 'Ooops - you are not authenticated (properly logged in) to for me to read your preference file. Try loggin out and logging in?' + 'Oops — you are not authenticated (properly logged in), so SolidOS cannot read your preferences file. Try logging out and then logging back in.' alert(m2) } else if (err instanceof CrossOriginForbiddenError) { m2 = `Unauthorized: Assuming preference file blocked for origin ${window.location.origin}`