diff --git a/desktop/app/src/PluginContainer.tsx b/desktop/app/src/PluginContainer.tsx index 363a7bc9d..7f0a42025 100644 --- a/desktop/app/src/PluginContainer.tsx +++ b/desktop/app/src/PluginContainer.tsx @@ -384,12 +384,6 @@ class PluginContainer extends PureComponent { } } -// Let's make sure we reive new props in bursts of 200 ms, rather than continously -const DebouncedPluginContainer = debounceRender(PluginContainer, 100, { - leading: true, - trailing: true, -}); - export default connect( ({ connections: { @@ -462,4 +456,4 @@ export default connect( setStaticView, starPlugin, }, -)(DebouncedPluginContainer); +)(PluginContainer);