Skip to content

Commit b3cb3e5

Browse files
committed
Use checkbox style for provider toggles in Settings
1 parent 25775c6 commit b3cb3e5

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

macos/Sources/UsageKit/SettingsView.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ struct SettingsWindowContent: View {
1717
claudeEnabled = newValue
1818
}
1919
))
20+
.toggleStyle(.checkbox)
2021
Toggle("Codex", isOn: Binding(
2122
get: { codexEnabled },
2223
set: { newValue in
2324
if !newValue && !claudeEnabled { return }
2425
codexEnabled = newValue
2526
}
2627
))
28+
.toggleStyle(.checkbox)
2729
}
2830

2931
Section("General") {

0 commit comments

Comments
 (0)