diff --git a/VDS/Protocols/Handlerable.swift b/VDS/Protocols/Handlerable.swift index 79c08668..253f5d82 100644 --- a/VDS/Protocols/Handlerable.swift +++ b/VDS/Protocols/Handlerable.swift @@ -25,7 +25,7 @@ public protocol Handlerable: AnyObject, Initable, Disabling, Surfaceable { extension Handlerable { public func setupNeedsUpdateEvent() { subject - .debounce(for: .seconds(0), scheduler: RunLoop.main) + .debounce(for: .milliseconds(200), scheduler: RunLoop.main) .sink { [weak self] _ in self?.updateView() }.store(in: &subscribers)