diff --git a/web/src/util.ts b/web/src/util.ts
index 93551228bf..142b48dade 100644
--- a/web/src/util.ts
+++ b/web/src/util.ts
@@ -456,7 +456,12 @@ export function format_array_as_list_with_highlighted_elements(
 ): string {
     // If Intl.ListFormat is not supported
     if (Intl.ListFormat === undefined) {
-        return array.map((item) => `${Handlebars.Utils.escapeExpression(item)}`).join(", ");
+        return array
+            .map(
+                (item) =>
+                    `${Handlebars.Utils.escapeExpression(item)}`,
+            )
+            .join(", ");
     }
 
     // Use Intl.ListFormat to format the array as a Internationalized list.
@@ -469,7 +474,7 @@ export function format_array_as_list_with_highlighted_elements(
             // items), and literals (commas, etc.). We need to
             // HTML-escape the elements, but not the literals.
             if (part.type === "element") {
-                return `${Handlebars.Utils.escapeExpression(part.value)}`;
+                return `${Handlebars.Utils.escapeExpression(part.value)}`;
             }
             return part.value;
         })
diff --git a/web/styles/app_components.css b/web/styles/app_components.css
index 4e003783ee..fef69e25fa 100644
--- a/web/styles/app_components.css
+++ b/web/styles/app_components.css
@@ -59,6 +59,10 @@ kbd {
     font-weight: 300;
 }
 
+.highlighted-element {
+    font-weight: 600;
+}
+
 .inline-block {
     display: inline-block;
 }
diff --git a/web/templates/modal_banner/unsubscribed_participants_warning_banner.hbs b/web/templates/modal_banner/unsubscribed_participants_warning_banner.hbs
index 901f01dac6..7e74939978 100644
--- a/web/templates/modal_banner/unsubscribed_participants_warning_banner.hbs
+++ b/web/templates/modal_banner/unsubscribed_participants_warning_banner.hbs
@@ -4,20 +4,20 @@
             {{#tr}}
                 Message sender