0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-12 15:51:37 -05:00

Reduce the persist debounce window.

This commit is contained in:
Andrey Antukh 2020-01-27 13:27:01 +01:00
parent de09217e30
commit 03eb756551

View file

@ -255,7 +255,7 @@
stream)]
(->> stream
(rx/filter #(satisfies? IBatchedChange %))
(rx/debounce 500)
(rx/debounce 200)
(rx/map (constantly diff-and-commit-changes))
(rx/take-until stoper))))))