From 3de9c2bda0bf882e4da7879d96afc0f7c889406b Mon Sep 17 00:00:00 2001 From: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com> Date: Mon, 14 Jul 2025 22:00:11 +0530 Subject: [PATCH] fix: uncheck requires Confirmation For FreeEmail (#22486) --- .../tabs/advanced/RequiresConfirmationController.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/features/eventtypes/components/tabs/advanced/RequiresConfirmationController.tsx b/packages/features/eventtypes/components/tabs/advanced/RequiresConfirmationController.tsx index 5615a6d083..7f8cd85cf2 100644 --- a/packages/features/eventtypes/components/tabs/advanced/RequiresConfirmationController.tsx +++ b/packages/features/eventtypes/components/tabs/advanced/RequiresConfirmationController.tsx @@ -104,9 +104,10 @@ export default function RequiresConfirmationController({ LockedIcon={requiresConfirmationLockedProps.LockedIcon} onCheckedChange={(val) => { formMethods.setValue("requiresConfirmation", val, { shouldDirty: true }); - // If we uncheck requires confirmation, we also uncheck the "will block slot" checkbox + // If we uncheck requires confirmation, we also uncheck these checkboxes if (!val) { formMethods.setValue("requiresConfirmationWillBlockSlot", false, { shouldDirty: true }); + formMethods.setValue("requiresConfirmationForFreeEmail", false, { shouldDirty: true }); } onRequiresConfirmation(val); }}>