From fa9a0cc77637f521332f7183ebda226195844035 Mon Sep 17 00:00:00 2001 From: notmd Date: Thu, 2 Feb 2023 20:26:24 +0700 Subject: [PATCH] fix build --- website/src/pages/admin/index.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/website/src/pages/admin/index.tsx b/website/src/pages/admin/index.tsx index 34a24ff6..a4b77508 100644 --- a/website/src/pages/admin/index.tsx +++ b/website/src/pages/admin/index.tsx @@ -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 ( - - - + <> + + Open Assistant + + + + + ); };