diff --git a/Sources/Secretive/Views/SettingsView.swift b/Sources/Secretive/Views/SettingsView.swift index b0bc065..5f6f9f7 100644 --- a/Sources/Secretive/Views/SettingsView.swift +++ b/Sources/Secretive/Views/SettingsView.swift @@ -9,7 +9,9 @@ import SwiftUI enum CommentStyle: String, CaseIterable, Identifiable { - case keyAndHost, none + case keyAndHost = "keyAndHost" + case none = "none" + var id: Self { self } }