From a4e147e35ed9969dfbc2b953bb563bfacd221378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Mon, 30 Mar 2026 16:48:59 +0200 Subject: [PATCH] nicolium: reduce debounce wait for hover cards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- .../nicolium/src/components/accounts/hover-account-wrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nicolium/src/components/accounts/hover-account-wrapper.tsx b/packages/nicolium/src/components/accounts/hover-account-wrapper.tsx index bca222bd3..20ef39bc6 100644 --- a/packages/nicolium/src/components/accounts/hover-account-wrapper.tsx +++ b/packages/nicolium/src/components/accounts/hover-account-wrapper.tsx @@ -7,7 +7,7 @@ import { isMobile } from '@/utils/is-mobile'; const showAccountHoverCard = debounce((openAccountHoverCard, ref, accountId) => { openAccountHoverCard(ref, accountId); -}, 600); +}, 300); interface IHoverAccountWrapper { accountId?: string;