diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js
index dc9b34eb5..21800ecff 100644
--- a/static/js/emailLibrary.js
+++ b/static/js/emailLibrary.js
@@ -1333,11 +1333,10 @@ function _renderAccountsStrip() {
// 'Default' rather than 'All (default)' — this view shows the account
// marked is_default; cross-account aggregation is a separate feature.
let html = ``;
- // Match the 6px sidebar notification dot's visual presence — render as
- // a 10x10 SVG so the rendered glyph reads as a 'dot' next to the chip
- // label rather than the previous thin 8px ring.
- const _dotFilled = '';
- const _dotHollow = '';
+ // Small default-account dot — slightly smaller than the previous 10px
+ // version so it doesn't dominate the chip's right edge.
+ 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';
@@ -1345,7 +1344,7 @@ function _renderAccountsStrip() {
const dotTitle = a.is_default ? 'Default account' : 'Set as default';
html += ``
+ ``
- + ``
+ + ``
+ ``;
}
strip.innerHTML = html;