From 9aa9c527b1604cbc36c52b65feacd7203a54d059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Rialland?= Date: Thu, 17 Mar 2022 20:07:53 +0100 Subject: [PATCH] Try 25ms to fix firefox bug --- site/source/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/source/utils.ts b/site/source/utils.ts index 1b60a82f0..cffe1ef1f 100644 --- a/site/source/utils.ts +++ b/site/source/utils.ts @@ -106,7 +106,7 @@ export const getValueFrom = < */ export const wrapperDebounceEvents = ( props: T, - { ms = 50, eventsToWrap = ['onPress'] } = {} + { ms = 25, eventsToWrap = ['onPress'] } = {} ): T => { if (props && typeof props === 'object') { const castedProps = props as Record