fix: 修复 faqs 和 users 页面缺少默认 return 的问题

This commit is contained in:
537yaha
2025-12-12 10:21:12 +08:00
parent 2f922aa7b4
commit 42e58bdcc7
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -472,5 +472,13 @@ export default function FAQsPage({ embedded = false }: FAQsPageProps) {
</Dialog>
</>
);
}
return (
<ResponsiveLayout
main={mainContent}
header={headerContent}
/>
);
}
+8
View File
@@ -663,5 +663,13 @@ export default function UsersPage({ embedded = false }: UsersPageProps) {
</Dialog>
</>
);
}
return (
<ResponsiveLayout
main={mainContent}
header={headerContent}
/>
);
}