From bbd823a58d6fb6234aad489825a5dd76171b463e Mon Sep 17 00:00:00 2001 From: Nikita Vorobev Date: Mon, 1 Apr 2024 18:24:47 +0100 Subject: [PATCH] fix: flaky dashboard e2e test --- .../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 3abbb012ddfc3..08fd06bdeedbd 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() }