🐛 Fix bad initial state on profile settings

This commit is contained in:
Andrey Antukh 2025-06-16 15:05:29 +02:00
parent 2af1feafb6
commit 8cb42a63e5

View file

@ -41,7 +41,7 @@
(update :lang #(or % ""))
(update :theme #(if (= % "default")
"dark"
%))))
(or % "dark")))))
form (fm/use-form :schema schema:options-form
:initial initial)]