diff --git a/packages/app/src/runtime/i18n/en.ts b/packages/app/src/runtime/i18n/en.ts index ddb1926c435..057f47d32d7 100644 --- a/packages/app/src/runtime/i18n/en.ts +++ b/packages/app/src/runtime/i18n/en.ts @@ -948,8 +948,6 @@ export const dict = { "settings.general.row.showTerminal.description": "Show the terminal button in the desktop title bar", "settings.general.row.showStatus.title": "Server status", "settings.general.row.showStatus.description": "Show the server status button in the title bar", - "settings.general.row.showProjectIcon.title": "Project icon", - "settings.general.row.showProjectIcon.description": "Show the project icon in the session header", "settings.general.row.mobileTitlebarBottom.title": "Bottom navigation", "settings.general.row.mobileTitlebarBottom.description": "Place the title bar and session tabs at the bottom of the screen on mobile", diff --git a/packages/app/src/session/timeline/message-timeline.tsx b/packages/app/src/session/timeline/message-timeline.tsx index 3e008879116..fab1ff612b2 100644 --- a/packages/app/src/session/timeline/message-timeline.tsx +++ b/packages/app/src/session/timeline/message-timeline.tsx @@ -1,4 +1,4 @@ -import { createEffect, createMemo, createSignal, For, on, Show, type Accessor, type JSX } from "solid-js" +import { createEffect, createMemo, createSignal, For, on, Show, type Accessor } from "solid-js" import createPresence from "solid-presence" import { createStore } from "solid-js/store" import type { SessionUserActions } from "@opencode-ai/session-ui/actions" @@ -17,7 +17,7 @@ import { getFilename } from "@opencode-ai/util/path" import { Popover } from "@kobalte/core/popover" import { SessionContextUsage } from "@/session/timeline/session-context-usage" import { useLanguage } from "@/runtime/i18n/language" -import { useData, useServer } from "@/runtime/server/current" +import { useData } from "@/runtime/server/current" import { useWorkspaceLocation } from "@/workspaces/location" import { Timeline, TimelineRow } from "@opencode-ai/session-ui/timeline/projection" import { createSessionTimelineRowRenderer } from "@opencode-ai/session-ui/timeline/row" @@ -26,10 +26,9 @@ import { createTimelineVirtualizer } from "./virtualizer" import { containsDirectory, isWorkspaceDirectory, workspaceDirectories } from "@/workspaces/paths" import { SessionWorkspaceMenu } from "@/session/timeline/session-workspace-menu" import { getProjectAvatarVariant } from "@/shell/state/layout" -import { displayName, getProjectAvatarSource, projectForSession } from "@/shell/layout/helpers" +import { displayName, getProjectAvatarSource } from "@/shell/layout/helpers" import { parseCommentNote, readPromptPresentation } from "@/composer/comment-note" import { useCommand } from "@/shell/commands/command" -import { useSettings } from "@/settings/model" type BackgroundTask = { id: string @@ -181,7 +180,6 @@ function WorkspaceMoveAction(props: { function SessionSummaryPanel(props: { project: Project - avatar?: JSX.Element directory: string local: boolean branch?: string @@ -208,13 +206,11 @@ function SessionSummaryPanel(props: {