From 88b44b461611084a4a65804bee97a416da7b0c2c Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Sun, 26 Oct 2025 20:52:11 -0700 Subject: [PATCH] feat: Simplify disabled state logic for autodraft settings controls --- app/components/AutodraftSettings.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/components/AutodraftSettings.tsx b/app/components/AutodraftSettings.tsx index 8449f32..39568a7 100644 --- a/app/components/AutodraftSettings.tsx +++ b/app/components/AutodraftSettings.tsx @@ -107,7 +107,7 @@ export function AutodraftSettings({ id="autodraft-switch" checked={localEnabled} onCheckedChange={handleToggle} - disabled={isMyTurn || isUpdating} + disabled={isMyTurn} /> @@ -115,23 +115,23 @@ export function AutodraftSettings({ handleModeChange(value as "next_pick" | "while_on")} - disabled={isMyTurn || isUpdating} + disabled={isMyTurn} className="space-y-2" >
- +
- +