Improve error handling on onboarding questions form

This commit is contained in:
Andrey Antukh 2022-09-21 09:29:03 +02:00
parent ec53288b66
commit 21683be07b
3 changed files with 47 additions and 14 deletions

View file

@ -262,6 +262,11 @@
(when (some? el)
(.appendChild ^js el child)))
(defn remove-child!
[^js el child]
(when (some? el)
(.removeChild ^js el child)))
(defn get-first-child
[^js el]
(when (some? el)