Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6c5596c

Browse files
committedMay 29, 2025·
unbold, add back auth button
1 parent b348029 commit 6c5596c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎Coder-Desktop/Coder-Desktop/Views/VPN/VPNMenu.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ struct VPNMenu<VPN: VPNService, FS: FileSyncDaemon>: View {
8181
}.buttonStyle(.plain)
8282
TrayDivider()
8383
}
84+
AuthButton<VPN>()
8485
Button {
8586
openSettings()
8687
appActivate()

‎Coder-Desktop/Coder-Desktop/Views/VPN/VPNState.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ struct VPNState<VPN: VPNService>: View {
1212
case (.failed(.systemExtensionError(.needsUserApproval)), _):
1313
VStack {
1414
Text("Awaiting System Extension approval")
15-
.font(.headline)
1615
.foregroundColor(.secondary)
1716
.multilineTextAlignment(.center)
1817
.fixedSize(horizontal: false, vertical: true)
@@ -32,7 +31,6 @@ struct VPNState<VPN: VPNService>: View {
3231
case (.failed(.networkExtensionError(.unconfigured)), _):
3332
VStack {
3433
Text("The system VPN requires reconfiguration")
35-
.font(.headline)
3634
.foregroundColor(.secondary)
3735
.multilineTextAlignment(.center)
3836
.fixedSize(horizontal: false, vertical: true)

0 commit comments

Comments
 (0)
Please sign in to comment.