mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
fix branch conflicts
This commit is contained in:
parent
cafa7baf1f
commit
357121bad5
2 changed files with 1 additions and 8 deletions
|
|
@ -112,7 +112,7 @@ class AppState: ObservableObject {
|
|||
validateSession()
|
||||
.catch { (error) -> AnyPublisher<Void, Error> in
|
||||
guard
|
||||
let username = savedUsername,
|
||||
let username = self.savedUsername,
|
||||
let password = try? Current.keychain.getString(username)
|
||||
else {
|
||||
return Fail(error: error)
|
||||
|
|
|
|||
|
|
@ -19,13 +19,6 @@ struct GeneralPreferencePane: View {
|
|||
}
|
||||
}
|
||||
.groupBoxStyle(PreferencesGroupBoxStyle())
|
||||
|
||||
Divider()
|
||||
|
||||
GroupBox(label: Text("Notifications")) {
|
||||
NotificationsView().environmentObject(appState)
|
||||
}
|
||||
.groupBoxStyle(PreferencesGroupBoxStyle())
|
||||
}
|
||||
.frame(width: 400)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue