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>
<Admin
withProvider={{ user }}
config={{ basepath: "/admin", color_scheme: "dark", logo_return_path: "/../" }}
config={{ basepath: "/admin", theme: "dark", logo_return_path: "/../" }}
client:only
/>
</body>

View File

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

View File

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