Skip to content

Commit 71ce6d5

Browse files
committed
Lower minimum debounce
1 parent e9b9cd2 commit 71ce6d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/Sources/Service/RealtimeSuggestionController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public actor RealtimeSuggestionController {
145145
func triggerPrefetchDebounced(force: Bool = false) {
146146
inflightPrefetchTask = Task(priority: .utility) { @WorkspaceActor in
147147
try? await Task.sleep(nanoseconds: UInt64(
148-
max(UserDefaults.shared.value(for: \.realtimeSuggestionDebounce), 0.25)
148+
max(UserDefaults.shared.value(for: \.realtimeSuggestionDebounce), 0.15)
149149
* 1_000_000_000
150150
))
151151

0 commit comments

Comments
 (0)