Fix invalid schemas (#19548)
* fix: account selection invalid schema definition * fix: token-input invalid schema definition
This commit is contained in:
parent
32098d2548
commit
5fba1dbfa3
|
@ -5,8 +5,8 @@
|
|||
[:catn
|
||||
[:props
|
||||
[:map
|
||||
[:token {:optional true} [:maybe :string :keyword]]
|
||||
[:currency {:optional true} [:maybe :string :keyword]]
|
||||
[:token {:optional true} [:maybe [:or :string :keyword]]]
|
||||
[:currency {:optional true} [:maybe [:or :string :keyword]]]
|
||||
[:error? {:optional true} [:maybe :boolean]]
|
||||
[:title {:optional true} [:maybe :string]]
|
||||
[:conversion {:optional true} [:maybe :double]]
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
[:cat
|
||||
[:map {:closed true}
|
||||
[:community-id string?]
|
||||
[:password [:maybe [:or string? object?]]]
|
||||
[:password [:maybe [:or string? security/?masked-password]]]
|
||||
[:pub-key string?]
|
||||
[:addresses-to-reveal
|
||||
[:or [:set string?]
|
||||
|
|
Loading…
Reference in New Issue