Projects
diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx
index 5ae583b66bb2..5423fa7d14eb 100644
--- a/apps/web/src/components/Sidebar.tsx
+++ b/apps/web/src/components/Sidebar.tsx
@@ -565,7 +565,9 @@ interface SidebarDraftRowData {
// interrupted "new thread" stays one click away. Self-contained (own store
// subscription + closing divider) so per-keystroke composer updates
// re-render only this block, never the whole sidebar. Vanishes at count 0.
-const SidebarDraftBlock = memo(function SidebarDraftBlock(props: {
+// Exported for the legacy sidebar, which renders the same block above its
+// projects list so drafts stay reachable there too.
+export const SidebarDraftBlock = memo(function SidebarDraftBlock(props: {
projectDisplayNameByKey: ReadonlyMap;
projectCwdByKey: ReadonlyMap;
projectFaviconPathByKey: ReadonlyMap;