From 031a600725774d34d26ff23171f97622d18739ca Mon Sep 17 00:00:00 2001 From: pewdiepie-archdaemon Date: Wed, 10 Jun 2026 23:22:59 +0900 Subject: [PATCH] =?UTF-8?q?Email=20accounts=20strip:=20drop=20redundant=20?= =?UTF-8?q?'Accounts'=20label=20during=20load=20=E2=80=94=20whirlpool=20al?= =?UTF-8?q?one?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The strip already lives where account chips render, so the text label beside the whirlpool was redundant. Strip the label + the fallback 'Accounts...' text — the spinner alone tells the user accounts are loading. --- static/js/emailLibrary.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js index 8734c2cce..34c8e2cd6 100644 --- a/static/js/emailLibrary.js +++ b/static/js/emailLibrary.js @@ -301,14 +301,8 @@ function _renderAccountsLoading() { try { const wp = spinnerModule.createWhirlpool(14); wp.element.classList.add('email-accounts-loading-whirlpool'); - const label = document.createElement('span'); - label.className = 'email-accounts-loading-label'; - label.textContent = 'Accounts'; strip.appendChild(wp.element); - strip.appendChild(label); - } catch (_) { - strip.textContent = 'Accounts...'; - } + } catch (_) {} } function _syncEmailReminderBellVisibility(enabled) {