diff --git a/components/repo-layout.tsx b/components/repo-layout.tsx
index 4f25d2c0..03d1de56 100644
--- a/components/repo-layout.tsx
+++ b/components/repo-layout.tsx
@@ -22,7 +22,7 @@ interface RepoLayoutProps {
children: React.ReactNode
}
-export function RepoLayout({ owner, repo, user, authProvider, initialStars = 1056, children }: RepoLayoutProps) {
+export function RepoLayout({ owner, repo, user, authProvider, initialStars = 1200, children }: RepoLayoutProps) {
const { toggleSidebar } = useTasks()
const pathname = usePathname()
const router = useRouter()
diff --git a/components/repo-page-client.tsx b/components/repo-page-client.tsx
index aa171936..463969be 100644
--- a/components/repo-page-client.tsx
+++ b/components/repo-page-client.tsx
@@ -21,7 +21,7 @@ interface RepoPageClientProps {
initialStars?: number
}
-export function RepoPageClient({ owner, repo, user, authProvider, initialStars = 1056 }: RepoPageClientProps) {
+export function RepoPageClient({ owner, repo, user, authProvider, initialStars = 1200 }: RepoPageClientProps) {
const { toggleSidebar } = useTasks()
const [activeTab, setActiveTab] = useState('commits')
diff --git a/components/task-page-client.tsx b/components/task-page-client.tsx
index 2ba86a3e..176ed40d 100644
--- a/components/task-page-client.tsx
+++ b/components/task-page-client.tsx
@@ -25,7 +25,7 @@ export function TaskPageClient({
taskId,
user,
authProvider,
- initialStars = 1056,
+ initialStars = 1200,
maxSandboxDuration = 300,
}: TaskPageClientProps) {
const { task, isLoading, error } = useTask(taskId)
diff --git a/components/task-page-header.tsx b/components/task-page-header.tsx
index 4a36d9e3..6363c030 100644
--- a/components/task-page-header.tsx
+++ b/components/task-page-header.tsx
@@ -17,7 +17,7 @@ interface TaskPageHeaderProps {
initialStars?: number
}
-export function TaskPageHeader({ task, user, authProvider, initialStars = 1056 }: TaskPageHeaderProps) {
+export function TaskPageHeader({ task, user, authProvider, initialStars = 1200 }: TaskPageHeaderProps) {
const { toggleSidebar } = useTasks()
return (
diff --git a/components/tasks-list-client.tsx b/components/tasks-list-client.tsx
index 42837a67..57981bb3 100644
--- a/components/tasks-list-client.tsx
+++ b/components/tasks-list-client.tsx
@@ -100,7 +100,7 @@ function getTimeAgo(date: Date): string {
return new Date(date).toLocaleDateString()
}
-export function TasksListClient({ user, authProvider, initialStars = 1056 }: TasksListClientProps) {
+export function TasksListClient({ user, authProvider, initialStars = 1200 }: TasksListClientProps) {
const { toggleSidebar, refreshTasks } = useTasks()
const router = useRouter()
const [tasks, setTasks] = useState([])
@@ -456,7 +456,7 @@ export function TasksListClient({ user, authProvider, initialStars = 1056 }: Tas
)}
)}
- {task.selectedAgent &&
•}
+ {task.selectedAgent &&
?}
{getTimeAgo(task.createdAt)}
diff --git a/lib/github-stars.ts b/lib/github-stars.ts
index 32106e94..a8226763 100644
--- a/lib/github-stars.ts
+++ b/lib/github-stars.ts
@@ -16,9 +16,9 @@ export async function getGitHubStars(): Promise {
}
const data = await response.json()
- return data.stargazers_count || 994
+ return data.stargazers_count || 1200
} catch (error) {
console.error('Error fetching GitHub stars:', error)
- return 994 // Fallback value
+ return 1200 // Fallback value
}
}