diff --git a/web/chat/chat-tabs.css b/web/chat/chat-tabs.css
deleted file mode 100644
--- a/web/chat/chat-tabs.css
+++ /dev/null
@@ -1,16 +0,0 @@
-div.container {
- width: 400px;
- background-color: var(--bg);
- border-right: 1px solid var(--border-color);
- display: flex;
- flex-direction: column;
-}
-
-div.threadList {
- flex: 1;
- overflow-y: auto;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- border-top: 1px solid var(--border-color);
-}
diff --git a/web/chat/chat-tabs.react.js b/web/chat/chat-tabs.react.js
--- a/web/chat/chat-tabs.react.js
+++ b/web/chat/chat-tabs.react.js
@@ -5,8 +5,6 @@
import { unreadBackgroundCount } from 'lib/selectors/thread-selectors.js';
-import css from './chat-tabs.css';
-import ChatThreadList from './chat-thread-list.react.js';
import { ThreadListContext } from './thread-list-provider.js';
import Tabs, { type TabData } from '../components/tabs.react.js';
import { useSelector } from '../redux/redux-utils.js';
@@ -41,25 +39,13 @@
);
const { activeTab, setActiveTab } = threadListContext;
- const tabs = React.useMemo(
- () => (
-