diff --git a/beszel/site/src/components/login/login.tsx b/beszel/site/src/components/login/login.tsx
index 6103efd..38e4754 100644
--- a/beszel/site/src/components/login/login.tsx
+++ b/beszel/site/src/components/login/login.tsx
@@ -8,6 +8,7 @@ import { $router } from "../router"
import { AuthMethodsList } from "pocketbase"
import { useTheme } from "../theme-provider"
import { pb } from "@/lib/api"
+import { ModeToggle } from "../mode-toggle"
export default function () {
const page = useStore($router)
@@ -50,8 +51,11 @@ export default function () {
+
+
+
diff --git a/beszel/site/src/components/ui/input.tsx b/beszel/site/src/components/ui/input.tsx
index 1b86ae3..5639850 100644
--- a/beszel/site/src/components/ui/input.tsx
+++ b/beszel/site/src/components/ui/input.tsx
@@ -2,21 +2,19 @@ import * as React from "react"
import { cn } from "@/lib/utils"
-export interface InputProps extends React.InputHTMLAttributes {}
-
-const Input = React.forwardRef(({ className, type, ...props }, ref) => {
+function Input({ className, type, ...props }: React.ComponentProps<"input">) {
return (
)
-})
-Input.displayName = "Input"
+}
export { Input }
diff --git a/supplemental/CHANGELOG.md b/supplemental/CHANGELOG.md
index 6b78e52..304611d 100644
--- a/supplemental/CHANGELOG.md
+++ b/supplemental/CHANGELOG.md
@@ -1,3 +1,13 @@
+## 0.12.6
+
+- Add maximum 1 minute memory usage.
+
+- Add status filters to All Systems table.
+
+- Fix Safari system link CSS bug.
+
+- Use older cuda image for increased compatibility (#1103)
+
## 0.12.5
- Downgrade `gopsutil` to `v4.25.6` to fix panic on FreeBSD (#1083)