mirror of
https://codeberg.org/secana/Forji.git
synced 2026-06-16 05:13:55 -07:00
fix: linting errors
This commit is contained in:
parent
3adda37fb1
commit
43900cfb11
2 changed files with 2 additions and 2 deletions
|
|
@ -107,7 +107,7 @@ actor KeychainManager {
|
|||
}
|
||||
}
|
||||
|
||||
enum KeychainError: Error, Sendable {
|
||||
enum KeychainError: Error {
|
||||
case unableToSave
|
||||
case notFound
|
||||
case unableToDelete
|
||||
|
|
|
|||
|
|
@ -294,7 +294,7 @@ struct UserPickerSection: View {
|
|||
}
|
||||
|
||||
#Preview("Labels") {
|
||||
@Previewable @State var selected: Set<Int> = [1]
|
||||
@Previewable @State var selected: Set = [1]
|
||||
NavigationStack {
|
||||
List {
|
||||
LabelPickerSection(
|
||||
|
|
|
|||
Loading…
Reference in a new issue