|
|
@@ -43,7 +43,9 @@ struct RemoteSettingsView: View {
|
|
|
Picker("Remote Type", selection: $viewModel.remoteType) {
|
|
|
Text("None").tag(RemoteType.none)
|
|
|
Text("Nightscout").tag(RemoteType.nightscout)
|
|
|
- Text("Trio Remote Control").tag(RemoteType.trc)
|
|
|
+ if BuildDetails.default.branch?.lowercased() != "main" {
|
|
|
+ Text("Trio Remote Control").tag(RemoteType.trc)
|
|
|
+ }
|
|
|
}
|
|
|
.pickerStyle(MenuPickerStyle())
|
|
|
|