diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js
index de7b791ca..0d158b9f4 100644
--- a/static/js/emailLibrary.js
+++ b/static/js/emailLibrary.js
@@ -1333,15 +1333,18 @@ 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 _dotFilled = '';
- const _dotHollow = '';
+ // 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 = '';
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 dot = a.is_default ? _dotFilled : _dotHollow;
const dotTitle = a.is_default ? 'Default account' : 'Set as default';
html += ``
- + ``
+ + ``
+ ``
+ ``;
}