Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/renderer/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const IssueDetailView = lazy(() => import("./views/IssueDetailView"));
const CursorView = lazy(() => import("./views/CursorView"));
const DevinView = lazy(() => import("./views/DevinView"));
const ChatGPTView = lazy(() => import("./views/ChatGPTView"));
const HighScoresView = lazy(() => import("./views/HighScoresView"));

PerfLogger.mark("App.tsx module loaded");

Expand Down Expand Up @@ -186,6 +187,7 @@ function App() {
element={<IssueDetailView />}
/>
<Route path="/settings" element={<SettingsView />} />
<Route path="/high-scores" element={<HighScoresView />} />
<Route path="/agents/cursor" element={<CursorView />} />
<Route path="/agents/devin" element={<DevinView />} />
<Route path="/agents/chatgpt" element={<ChatGPTView />} />
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/components/Sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState, useMemo, useEffect, useRef } from "react";
import type { MouseEvent as ReactMouseEvent } from "react";
import { useLocation, useNavigate } from "react-router-dom";
import { GitPullRequest, GitBranch, Settings, AlertCircle, SatelliteDish } from "lucide-react";
import { GitPullRequest, GitBranch, Settings, AlertCircle, SatelliteDish, Trophy } from "lucide-react";
import { CursorIcon } from "./icons/CursorIcon";
import { DevinIcon } from "./icons/DevinIcon";
import { ChatGPTIcon } from "./icons/ChatGPTIcon";
Expand All @@ -26,6 +26,7 @@ const NAV_ITEMS: SidebarNavItem[] = [
{ path: "/pulls", icon: GitPullRequest, label: "Pull Requests" },
{ path: "/issues", icon: AlertCircle, label: "Issues" },
{ path: "/branches", icon: GitBranch, label: "Branches" },
{ path: "/high-scores", icon: Trophy, label: "High Scores" },
{
icon: SatelliteDish,
label: "Async Agents",
Expand Down
Loading