Skip to content

Commit

Permalink
Merge pull request #344 from loopandlearn/trio-remote-feature-toggle
Browse files Browse the repository at this point in the history
Trio remote controll feature toggle
  • Loading branch information
marionbarker authored Dec 19, 2024
2 parents afa3478 + 02c388d commit 0c71e58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion LoopFollow/Remote/Settings/RemoteSettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down

0 comments on commit 0c71e58

Please sign in to comment.