Bump InviteSearch onBlur timeout from 150ms to 200ms

Safer margin for click-through on slower devices.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Kyle 2026-03-16 20:30:09 +08:00
parent f54ab5079e
commit 8f087ccebf

View File

@ -131,7 +131,7 @@ export function InviteSearch({ connections, existingInviteeIds, onInvite, isInvi
<Input <Input
value={search} value={search}
onChange={(e) => setSearch(e.target.value)} onChange={(e) => setSearch(e.target.value)}
onBlur={() => setTimeout(() => setSearch(''), 150)} onBlur={() => setTimeout(() => setSearch(''), 200)}
placeholder="Search connections..." placeholder="Search connections..."
className="h-8 pl-8 text-xs" className="h-8 pl-8 text-xs"
/> />