Merge pull request #6694 from penpot/niwinz-staging-fix-profile-lang

🐛 Fix bad initial state on profile settings
This commit is contained in:
Alejandro Alonso 2025-06-18 07:26:42 +02:00 committed by GitHub
commit 4f09005586
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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)]