diff --git a/web/chat/chat-thread-list-see-more-sidebars.react.js b/web/chat/chat-thread-list-see-more-sidebars.react.js
--- a/web/chat/chat-thread-list-see-more-sidebars.react.js
+++ b/web/chat/chat-thread-list-see-more-sidebars.react.js
@@ -28,10 +28,10 @@
       <a className={css.threadButton}>
         <div className={css.threadRow}>
           <div
-            className={classNames([
-              css.sidebarTitle,
-              unread ? css.unread : null,
-            ])}
+            className={classNames({
+              [css.sidebarTitle]: true,
+              [css.unread]: unread,
+            })}
           >
             {buttonText}
           </div>