Hi guys,
I have an app that I am optimizing for offline use.
In the form control, I have this sort of code on all dropdowns:
```
If(
varConnectionStatus = "Online",
Choices([@cctv].connectivity),
[
"IP",
"BNC",
"N/A",
]
)
```
Thing is, after I allow time for the new app version to download and go into offline mode, some dropdowns show as they should, while some have missing last few values or even show only first value from the array. In one instance, a dropdown had values duplicated from the previous dropdown.
How is this possible, considering values are hardcoded?