diff --git a/src/pages/GiteaEmbed.tsx b/src/pages/GiteaEmbed.tsx
index 802f1e8..c7dbda3 100644
--- a/src/pages/GiteaEmbed.tsx
+++ b/src/pages/GiteaEmbed.tsx
@@ -1,6 +1,6 @@
import { useState } from 'react'
import { Table, Tag, Tabs, Typography, Card, Row, Col, Spin } from 'antd'
-import { CodeOutlined, BranchesOutlined, RocketOutlined } from '@ant-design/icons'
+import { CodeOutlined, RocketOutlined } from '@ant-design/icons'
import { useQuery } from '@tanstack/react-query'
import { api } from '@/services/http-client'
@@ -42,7 +42,7 @@ export default function ProjectCenter() {
})
const repoColumns = [
- { title: '仓库', dataIndex: 'fullName', width: 200, render: (n: string, r: any) => { setSelectedRepo(n); setTab('issues') }}>{n} },
+ { title: '仓库', dataIndex: 'fullName', width: 200, render: (n: string) => { setSelectedRepo(n); setTab('issues') }}>{n} },
{ title: '描述', dataIndex: 'description', width: 200, ellipsis: true, render: (d: string) => d || '-' },
{ title: 'Issues', dataIndex: 'openIssues', width: 70 },
{ title: 'PRs', dataIndex: 'openPulls', width: 70 },