Email accounts strip: drop redundant 'Accounts' label during load — whirlpool alone

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.
This commit is contained in:
pewdiepie-archdaemon
2026-06-10 23:22:59 +09:00
parent b385b25d5f
commit 031a600725
+1 -7
View File
@@ -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) {