From bf68677d3a68779e4bf2fe14372d1dafe0ce68aa Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Thu, 23 Oct 2025 21:25:51 +0200 Subject: [PATCH] Update error message to indicate waiting for user validation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Motivations :** - User wants clearer message when authentication is pending - Instead of 'Authentication failed', indicate that we're waiting for user validation **Modifications :** - Changed error message from '❌ Authentication failed' to '⏳ Waiting for user to validate secure key access...' - Changed color from error-color to info-color to be less alarming - Message is now in English as requested **Pages affectées :** - src/pages/home/home.ts --- src/pages/home/home.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/home/home.ts b/src/pages/home/home.ts index 9dade17..36026a9 100755 --- a/src/pages/home/home.ts +++ b/src/pages/home/home.ts @@ -583,9 +583,9 @@ async function handleMainPairing(): Promise { } catch (error) { console.error('Pairing failed:', error); - + if (mainStatus) { - mainStatus.innerHTML = '❌ Authentication failed'; + mainStatus.innerHTML = '⏳ Waiting for user to validate secure key access...'; } } }