Skip to content

Commit

Permalink
Merge branch 'deployment-target-macos-14' into deployment-target-maco…
Browse files Browse the repository at this point in the history
…s-15
  • Loading branch information
F1248 committed Dec 25, 2024
2 parents 5838213 + 0522669 commit 86c3997
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Genius/Views/Settings/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import SwiftUICore

struct SettingsView: View {

@Default(.interfaceMode)
var interfaceMode: Settings.InterfaceMode
@Default(.developmentMode)
var developmentMode: Bool
@AppStorage(Defaults.Keys.interfaceMode.name)
var interfaceMode: Settings.InterfaceMode = Defaults.Keys.interfaceMode.defaultValue
@AppStorage(Defaults.Keys.developmentMode.name)
var developmentMode: Bool = Defaults.Keys.developmentMode.defaultValue

var body: some View {
Text("Settings")
Expand Down

0 comments on commit 86c3997

Please sign in to comment.