From 8f087ccebf25628023b63404f07f75ed817515dc Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Mon, 16 Mar 2026 20:30:09 +0800 Subject: [PATCH] Bump InviteSearch onBlur timeout from 150ms to 200ms Safer margin for click-through on slower devices. Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/calendar/InviteeSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/calendar/InviteeSection.tsx b/frontend/src/components/calendar/InviteeSection.tsx index e0223df..c1476a9 100644 --- a/frontend/src/components/calendar/InviteeSection.tsx +++ b/frontend/src/components/calendar/InviteeSection.tsx @@ -131,7 +131,7 @@ export function InviteSearch({ connections, existingInviteeIds, onInvite, isInvi setSearch(e.target.value)} - onBlur={() => setTimeout(() => setSearch(''), 150)} + onBlur={() => setTimeout(() => setSearch(''), 200)} placeholder="Search connections..." className="h-8 pl-8 text-xs" />