diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js
index b1883eb21..de7b791ca 100644
--- a/static/js/emailLibrary.js
+++ b/static/js/emailLibrary.js
@@ -1333,16 +1333,16 @@ function _renderAccountsStrip() {
// 'Default' rather than 'All (default)' — this view shows the account
// marked is_default; cross-account aggregation is a separate feature.
let html = ``;
- const _starFilled = '';
- const _starHollow = '';
+ const _dotFilled = '';
+ const _dotHollow = '';
for (const a of state._libAccounts) {
const active = state._libAccountId === a.id ? ' active' : '';
const label = a.name || a.from_address || a.imap_user || 'account';
- const star = a.is_default ? _starFilled : _starHollow;
- const starTitle = a.is_default ? 'Default account' : 'Set as default';
+ const dot = a.is_default ? _dotFilled : _dotHollow;
+ const dotTitle = a.is_default ? 'Default account' : 'Set as default';
html += ``
- + ``
- + ``
+ + ``
+ + ``
+ ``;
}
strip.innerHTML = html;