Skip to content

Commit d1f3dc9

Browse files
committed
Fix compiler errors
1 parent 0ead67e commit d1f3dc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

App/Sources/Core/Models/Triggers/ModifierTrigger.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import Foundation
22

33
struct ModifierTrigger: Hashable, Equatable, Identifiable, Codable, Sendable {
4-
let id: String
5-
let modifier: ModifierKey?
6-
let manipulator: Manipulator?
4+
var id: String
5+
var modifier: ModifierKey?
6+
var manipulator: Manipulator?
77

8-
struct Manipulator: Codable, Equatable, Sendable {
8+
struct Manipulator: Hashable, Codable, Equatable, Sendable {
99
let alone: ModifierKey?
1010
let heldDown: ModifierKey?
1111
let timout: TimeInterval?

0 commit comments

Comments
 (0)