mirror of
https://github.com/2930134478/AI-CS.git
synced 2026-06-15 08:45:41 +08:00
fix: 修复构建错误 - 函数参数语法和引号转义
This commit is contained in:
@@ -39,7 +39,7 @@ interface FAQsPageProps {
|
||||
embedded?: boolean; // 是否嵌入模式(不使用 ResponsiveLayout)
|
||||
}
|
||||
|
||||
export default function FAQsPage({ embedded = false }: FAQsPageProps = {}) {
|
||||
export default function FAQsPage({ embedded = false }: FAQsPageProps) {
|
||||
const router = useRouter();
|
||||
const { agent } = useAuth();
|
||||
const [faqs, setFaqs] = useState<FAQSummary[]>([]);
|
||||
|
||||
@@ -253,7 +253,7 @@ export default function SettingsPage({ embedded = false }: SettingsPageProps = {
|
||||
</div>
|
||||
<p className="text-xs text-muted-foreground mt-2">
|
||||
开启后,AI 对话将不会显示在对话列表中,也不会收到 AI 消息通知。
|
||||
但您仍可以在会话页面手动开启"显示 AI 消息"来查看 AI 对话历史。
|
||||
但您仍可以在会话页面手动开启"显示 AI 消息"来查看 AI 对话历史。
|
||||
</p>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
@@ -41,7 +41,7 @@ interface UsersPageProps {
|
||||
embedded?: boolean; // 是否嵌入模式(不使用 ResponsiveLayout)
|
||||
}
|
||||
|
||||
export default function UsersPage({ embedded = false }: UsersPageProps = {}) {
|
||||
export default function UsersPage({ embedded = false }: UsersPageProps) {
|
||||
const router = useRouter();
|
||||
const { agent } = useAuth();
|
||||
const [users, setUsers] = useState<UserSummary[]>([]);
|
||||
|
||||
Reference in New Issue
Block a user