From 2af13b340b16b2ebe8cb34fbd13f0ff5e4e6d6eb Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Sun, 21 Dec 2025 15:28:35 +0100 Subject: [PATCH] fix: automation form validation --- .../app-settings/panel/automations-panel/OntimeActionForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/features/app-settings/panel/automations-panel/OntimeActionForm.tsx b/apps/client/src/features/app-settings/panel/automations-panel/OntimeActionForm.tsx index 269de44bb..9f3e81143 100644 --- a/apps/client/src/features/app-settings/panel/automations-panel/OntimeActionForm.tsx +++ b/apps/client/src/features/app-settings/panel/automations-panel/OntimeActionForm.tsx @@ -130,7 +130,7 @@ export default function OntimeActionForm({ }} value={watch(`outputs.${index}.secondarySource`)} options={[ - { value: null, label: 'Select secondary source', disabled: true }, + { value: null, label: 'Select secondary source' }, { value: 'aux1', label: 'Auxiliary timer 1' }, { value: 'aux2', label: 'Auxiliary timer 2' }, { value: 'aux3', label: 'Auxiliary timer 3' },