fix admin save state architecture

This commit is contained in:
MOH
2026-03-10 05:24:50 +01:00
parent e219295327
commit f2b5a15191
12 changed files with 123 additions and 38 deletions
+3
View File
@@ -0,0 +1,3 @@
export function isCheckedFormValue(value: FormDataEntryValue | null) {
return value === "on" || value === "true" || value === "1";
}