Skip to content

Commit 8fd289e

Browse files
committed
Remove Trio limitation
1 parent e82d9a4 commit 8fd289e

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

LoopFollow/Remote/Settings/RemoteSettingsView.swift

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,15 @@ struct RemoteSettingsView: View {
3131

3232
remoteTypeRow(type: .nightscout, label: "Nightscout", isEnabled: true)
3333

34-
if BuildDetails.default.branch?.lowercased() != "main" {
35-
remoteTypeRow(
36-
type: .trc,
37-
label: "Trio Remote Control",
38-
isEnabled: viewModel.isTrioDevice
39-
)
40-
}
34+
remoteTypeRow(
35+
type: .trc,
36+
label: "Trio Remote Control",
37+
isEnabled: viewModel.isTrioDevice
38+
)
4139

4240
Text("Nightscout is the only option for the released version of Trio and Loop.")
4341
.font(.footnote)
4442
.foregroundColor(.secondary)
45-
46-
if BuildDetails.default.branch?.lowercased() != "main" {
47-
Text("Trio Remote Control requires a special version of Trio, which is under development in a private repository until sufficient testing is completed.")
48-
.font(.footnote)
49-
.foregroundColor(.secondary)
50-
}
5143
}
5244

5345
// MARK: - User Information Section

0 commit comments

Comments
 (0)