diff --git a/static/js/emailLibrary.js b/static/js/emailLibrary.js
index 21800ecff..28abeabb9 100644
--- a/static/js/emailLibrary.js
+++ b/static/js/emailLibrary.js
@@ -1333,10 +1333,9 @@ function _renderAccountsStrip() {
// 'Default' rather than 'All (default)' — this view shows the account
// marked is_default; cross-account aggregation is a separate feature.
let html = ``;
- // 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 = '';
+ // 6px dot — matches the sidebar notification-dot size.
+ 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';