From 42e19f81cfe48ed83a4054b8c631cdb87f1c9b1b Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Sun, 12 Apr 2026 14:33:24 -0700 Subject: [PATCH] fix: disable add participant button while create request is in flight --- app/components/BatchResultEntry.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/BatchResultEntry.tsx b/app/components/BatchResultEntry.tsx index e147752..3bbffd0 100644 --- a/app/components/BatchResultEntry.tsx +++ b/app/components/BatchResultEntry.tsx @@ -307,7 +307,7 @@ export function BatchResultEntry({ size="sm" className="h-8" onClick={() => handleCreateParticipant(index)} - disabled={!newParticipantName.trim()} + disabled={!newParticipantName.trim() || createParticipantFetcher.state !== "idle"} > Add