From 96614b7cef6a0cd89aad330550461d70d14e9753 Mon Sep 17 00:00:00 2001 From: Matthew Oliveira Date: Tue, 19 Nov 2024 09:27:22 -0500 Subject: [PATCH] fix(locale-search): remove error --- packages/web-components/src/globals/mixins/throttled-input.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web-components/src/globals/mixins/throttled-input.ts b/packages/web-components/src/globals/mixins/throttled-input.ts index e0b7ed57cf4..364fdb72aaf 100644 --- a/packages/web-components/src/globals/mixins/throttled-input.ts +++ b/packages/web-components/src/globals/mixins/throttled-input.ts @@ -72,7 +72,7 @@ const ThrottledInputMixin = >(Base: T) => { /** * The throttle timeout to run query upon user input. */ - inputTimeout = 200; + abstract inputTimeout: number; connectedCallback() { // TS seems to miss `HTMLElement.prototype.connectedCallback()` definition