From 2578ac0d06dc54289377b422bc647eef63b2987b Mon Sep 17 00:00:00 2001 From: r-zakarya <82443831+r-zakarya@users.noreply.github.com> Date: Wed, 8 Jul 2026 20:13:53 +0100 Subject: [PATCH] fix(tray): drop "Welcome back" toast on tray-icon restore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restoring from the tray popped a "Welcome back" toast every time — noise for a routine action. Removed it from onTrayRestore; the auto-lock reset stays. The login-success "Welcome back, " toast is unaffected. Co-Authored-By: Claude Opus 4.8 --- js/app.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/app.js b/js/app.js index 3a1feef..e6f5aaa 100644 --- a/js/app.js +++ b/js/app.js @@ -101,7 +101,6 @@ const Bridge = (() => { // unlocked. if (state.cryptoKey && !state.locked) { if (typeof resetAutoLock === 'function') resetAutoLock(); - if (typeof toast === 'function') toast('Welcome back'); } },