mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-07-21 09:01:36 +00:00
ios: fix for XCode 14
This commit is contained in:
@@ -66,9 +66,9 @@ enum SendReceipts: Identifiable, Hashable {
|
||||
|
||||
var text: LocalizedStringKey {
|
||||
switch self {
|
||||
case .yes: "yes"
|
||||
case .no: "no"
|
||||
case let .userDefault(on): on ? "default (yes)" : "default (no)"
|
||||
case .yes: return "yes"
|
||||
case .no: return "no"
|
||||
case let .userDefault(on): return on ? "default (yes)" : "default (no)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user