fix branch conflicts

This commit is contained in:
Andrew Erickson 2021-04-30 20:15:54 -06:00
parent cafa7baf1f
commit 357121bad5
2 changed files with 1 additions and 8 deletions

View file

@ -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)

View file

@ -19,13 +19,6 @@ struct GeneralPreferencePane: View {
}
}
.groupBoxStyle(PreferencesGroupBoxStyle())
Divider()
GroupBox(label: Text("Notifications")) {
NotificationsView().environmentObject(appState)
}
.groupBoxStyle(PreferencesGroupBoxStyle())
}
.frame(width: 400)
}