diff --git a/.gitignore b/.gitignore index 4dbcbb952..792146a21 100644 --- a/.gitignore +++ b/.gitignore @@ -58,3 +58,4 @@ Thumbs.db # Scratch / agent working dirs (never committed) /tmp/ /.codex/ +.alma-snapshots diff --git a/desktop/frontend/src/App.tsx b/desktop/frontend/src/App.tsx index 88eebe68a..98e0ef49e 100644 --- a/desktop/frontend/src/App.tsx +++ b/desktop/frontend/src/App.tsx @@ -525,7 +525,6 @@ export default function App() { [activeTabId], ); const topicbarEditing = Boolean(activeTab?.topicId && activeTab.topicId === renamingTopicId); - const topicbarProjectPrefix = activeTab ? tabWorkspaceTitle(activeTab) : ""; const visibleTabId = activeTabId; const visibleTabs = useMemo(() => { const byId = new Map(tabMetas.map((tab) => [tab.id, tab])); @@ -1515,9 +1514,6 @@ export default function App() {
{topicbarEditing ? (
- {topicbarProjectPrefix && ( - {topicbarProjectPrefix} / - )}
) : ( -

{topicTitle(activeTab)}

+

{activeTab?.topicTitle || "Untitled"}

)} - ))} -
- {runActivity && ( -
- - {runActivity} - - - -
- )} - {(attachments.length > 0 || workspaceRefs.length > 0 || sessionRefs.length > 0) && (
{attachments.map((a) => ( @@ -1654,7 +1585,6 @@ export function Composer({ onDragOver={onDragOver} onDragLeave={onDragLeave} > - {text.trimStart().startsWith("!") ? "$" : "›"}