fix build

This commit is contained in:
notmd
2023-02-02 20:26:24 +07:00
parent 28ee771a97
commit fa9a0cc776
+9 -3
View File
@@ -1,3 +1,4 @@
import Head from "next/head";
import { AdminArea } from "src/components/AdminArea";
import { getAdminLayout } from "src/components/Layout";
import { UserTable } from "src/components/UserTable";
@@ -9,9 +10,14 @@ export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_
*/
const AdminIndex = () => {
return (
<AdminArea title="Open Assistant">
<UserTable />
</AdminArea>
<>
<Head>
<title>Open Assistant</title>
</Head>
<AdminArea>
<UserTable />
</AdminArea>
</>
);
};