From 358b6f05b87449046a71eb3923fc88a3d62d28f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Rialland?= Date: Thu, 17 Mar 2022 19:54:57 +0100 Subject: [PATCH] Try 50ms 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 38e11ce4a..1b60a82f0 100644 --- a/site/source/utils.ts +++ b/site/source/utils.ts @@ -106,7 +106,7 @@ export const getValueFrom = < */ export const wrapperDebounceEvents = ( props: T, - { ms = 10, eventsToWrap = ['onPress'] } = {} + { ms = 50, eventsToWrap = ['onPress'] } = {} ): T => { if (props && typeof props === 'object') { const castedProps = props as Record