From 379b94774bbe29534ebb09ed82a51136d836dda1 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 7 Mar 2023 10:54:26 -0600 Subject: [PATCH] removed debounce for now Signed-off-by: Matt Bruce --- VDS/Protocols/Handlerable.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/VDS/Protocols/Handlerable.swift b/VDS/Protocols/Handlerable.swift index 0c644b8a..f9ad8770 100644 --- a/VDS/Protocols/Handlerable.swift +++ b/VDS/Protocols/Handlerable.swift @@ -25,7 +25,6 @@ extension Handlerable { public func handlerPublisher() -> AnyPublisher { subject - .debounce(for: .seconds(Constants.StateDebounce), scheduler: RunLoop.main) .eraseToAnyPublisher() } }