Skip to content

Commit d434e77

Browse files
committed
capitalization
1 parent 87ec698 commit d434e77

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Coder Desktop/Coder Desktop/Views/AuthButton.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct AuthButton<VPN: VPNService, S: Session>: View {
1717
}
1818
} label: {
1919
ButtonRowView {
20-
Text(session.hasSession ? "Sign Out" : "Sign In")
20+
Text(session.hasSession ? "Sign out" : "Sign in")
2121
}
2222
}.buttonStyle(.plain)
2323
}

Coder Desktop/Coder Desktop/Views/VPNMenu.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct VPNMenu<VPN: VPNService, S: Session>: View {
5050
Button {
5151
openSystemExtensionSettings()
5252
} label: {
53-
ButtonRowView { Text("Open System Preferences") }
53+
ButtonRowView { Text("Approve in System Settings") }
5454
}.buttonStyle(.plain)
5555
} else {
5656
AuthButton<VPN, S>()

Coder Desktop/Coder Desktop/Views/VPNState.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ struct VPNState<VPN: VPNService, S: Session>: View {
1010
Group {
1111
switch (vpn.state, session.hasSession) {
1212
case (.failed(.systemExtensionError(.needsUserApproval)), _):
13-
Text("Awaiting System Extension Approval")
13+
Text("Awaiting System Extension approval")
1414
.font(.body)
1515
.foregroundStyle(.gray)
1616
case (_, false):

0 commit comments

Comments
 (0)