diff --git a/desktop/src/features/projects/ui/ProjectWorkspaceTabList.tsx b/desktop/src/features/projects/ui/ProjectWorkspaceTabList.tsx index 64e5f6ecd..378670e84 100644 --- a/desktop/src/features/projects/ui/ProjectWorkspaceTabList.tsx +++ b/desktop/src/features/projects/ui/ProjectWorkspaceTabList.tsx @@ -5,7 +5,7 @@ import { cn } from "@/shared/lib/cn"; import { TabsList, TabsTrigger } from "@/shared/ui/tabs"; const PROJECT_TAB_TRIGGER_CLASS = - "relative h-full shrink-0 rounded-none px-2.5 text-base leading-5 tracking-tight text-muted-foreground shadow-none after:absolute after:inset-x-2.5 after:bottom-0 after:h-0.5 after:bg-current after:opacity-0 after:transition-opacity after:content-[''] hover:bg-transparent hover:text-foreground hover:after:opacity-100 data-[state=active]:bg-transparent data-[state=active]:font-semibold data-[state=active]:text-foreground data-[state=active]:shadow-none data-[state=active]:after:opacity-100"; + "relative h-full shrink-0 rounded-none px-2.5 text-sm leading-5 tracking-tight text-muted-foreground shadow-none after:absolute after:inset-x-2.5 after:bottom-0 after:h-0.5 after:bg-current after:opacity-0 after:transition-opacity after:content-[''] hover:bg-transparent hover:text-foreground hover:after:opacity-100 data-[state=active]:bg-transparent data-[state=active]:font-semibold data-[state=active]:text-foreground data-[state=active]:shadow-none data-[state=active]:after:opacity-100"; const PROJECT_TAB_SELECTED_CLASS = "font-semibold text-foreground after:opacity-100"; diff --git a/desktop/src/features/projects/ui/ProjectWorkspaceTabs.tsx b/desktop/src/features/projects/ui/ProjectWorkspaceTabs.tsx index 6b1ec412b..65861b42a 100644 --- a/desktop/src/features/projects/ui/ProjectWorkspaceTabs.tsx +++ b/desktop/src/features/projects/ui/ProjectWorkspaceTabs.tsx @@ -27,10 +27,7 @@ import { cn } from "@/shared/lib/cn"; import { Button } from "@/shared/ui/button"; import { Tabs, TabsContent } from "@/shared/ui/tabs"; import { findReadmeFile } from "./ProjectReadmePanel"; -import { - formatLastChangedAt, - RepositoryFilesPanel, -} from "./ProjectRepositoryPanel"; +import { RepositoryFilesPanel } from "./ProjectRepositoryPanel"; import { type RepoSourceHeaderControls, RepoSourceDropdown, @@ -406,11 +403,6 @@ export function WorkspaceTabs({ {updatePullRequestAction.pending ? "Updating…" : "Update PR"} ) : null} - {selectedTab === "overview" && readmeFile ? ( - - Last changed {formatLastChangedAt(readmeFile.lastChangedAt)} - - ) : null} ) : null} {selectedPullRequest ? (