update override in examples

This commit is contained in:
dswbx
2025-03-11 19:53:31 +01:00
parent 051c508254
commit 4f01004262
3 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ export const prerender = false;
<body> <body>
<Admin <Admin
withProvider={{ user }} withProvider={{ user }}
config={{ basepath: "/admin", color_scheme: "dark", logo_return_path: "/../" }} config={{ basepath: "/admin", theme: "dark", logo_return_path: "/../" }}
client:only client:only
/> />
</body> </body>

View File

@@ -11,7 +11,7 @@ export default async function AdminPage() {
config={{ config={{
basepath: "/admin", basepath: "/admin",
logo_return_path: "/../", logo_return_path: "/../",
color_scheme: "system", theme: "system",
}} }}
/> />
); );

View File

@@ -5,6 +5,6 @@ export default adminPage({
config: { config: {
basepath: "/admin", basepath: "/admin",
logo_return_path: "/../", logo_return_path: "/../",
color_scheme: "system" theme: "system",
} },
}); });