From a9035daafb56a2fc4adcc2e984f95785351d17bf Mon Sep 17 00:00:00 2001 From: Nikita Vorobev Date: Tue, 2 Apr 2024 14:03:22 +0300 Subject: [PATCH] fix: Fix flaky dashboard e2e test (#21259) --- .../src/lib/components/PropertyFilters/propertyFilterLogic.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/lib/components/PropertyFilters/propertyFilterLogic.ts b/frontend/src/lib/components/PropertyFilters/propertyFilterLogic.ts index 3abbb012ddf..08fd06bdeed 100644 --- a/frontend/src/lib/components/PropertyFilters/propertyFilterLogic.ts +++ b/frontend/src/lib/components/PropertyFilters/propertyFilterLogic.ts @@ -44,8 +44,7 @@ export const propertyFilterLogic = kea([ listeners(({ actions, props, values }) => ({ // Only send update if value is set to something - setFilter: async ({ property }, breakpoint) => { - await breakpoint(300) + setFilter: async ({ property }) => { if (props.sendAllKeyUpdates || property?.value || (property?.key && property.type === 'hogql')) { actions.update() }