We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43441e4 commit 1d34f53Copy full SHA for 1d34f53
Examples/Reminders/SearchReminders.swift
@@ -17,6 +17,7 @@ class SearchRemindersModel {
17
if searchText.hasSuffix("\t") {
18
searchTokens.append(Token(kind: .near, rawValue: String(searchText.dropLast())))
19
searchText = ""
20
+ return
21
}
22
23
searchTask = Task { try await updateQuery() }
@@ -91,7 +92,7 @@ class SearchRemindersModel {
91
92
for token in searchTokens {
93
switch token.kind {
94
case .near:
- $0.match("NEAR(\(token.rawValue.quoted())")
95
+ $0.match("NEAR(\(token.rawValue.quoted()))")
96
case .tag:
97
$0.tags.match(token.rawValue)
98
0 commit comments