let mappy = Map.fromList $ fmap (\x -> (x,x)) $ [ "As soon as possible" , "1-2 months" , "3-6 months" , "6+ months" ] dropdown "As soon as possible" (constDyn mappy) def
For this code, it works completely fine when using localhost and when deployed, only gives all options the first time you visit the page however any other time including refreshing the page, the options disappear
Localhost:

Deployed: https://aceinterviewpreparation.com/main/onboard

When the page is refreshed, the options momentarily show up. I'm using a constDyn for each dropdown
reflex-platform branch "release/0.9.2.0"
let mappy = Map.fromList $ fmap (\x -> (x,x)) $ [ "As soon as possible" , "1-2 months" , "3-6 months" , "6+ months" ] dropdown "As soon as possible" (constDyn mappy) defFor this code, it works completely fine when using localhost and when deployed, only gives all options the first time you visit the page however any other time including refreshing the page, the options disappear
Localhost:
Deployed: https://aceinterviewpreparation.com/main/onboard
When the page is refreshed, the options momentarily show up. I'm using a constDyn for each dropdown
reflex-platform branch "release/0.9.2.0"