diff --git a/apps/desktop/src/app/cron/blueprints.test.ts b/apps/desktop/src/app/cron/blueprints.test.ts index 87dadb05112..5331f052f3f 100644 --- a/apps/desktop/src/app/cron/blueprints.test.ts +++ b/apps/desktop/src/app/cron/blueprints.test.ts @@ -70,7 +70,15 @@ describe('initialBlueprintValues', () => { it("seeds the deliver slot to 'local' when it has no default", () => { const values = initialBlueprintValues( blueprint([ - { name: 'deliver', type: 'enum', label: 'Deliver', default: null, options: ['origin', 'local'], optional: false, help: '' } + { + name: 'deliver', + type: 'enum', + label: 'Deliver', + default: null, + options: ['origin', 'local'], + optional: false, + help: '' + } ]) ) diff --git a/apps/desktop/src/app/cron/blueprints.tsx b/apps/desktop/src/app/cron/blueprints.tsx index 69c122cf4a3..fe5aeb5e250 100644 --- a/apps/desktop/src/app/cron/blueprints.tsx +++ b/apps/desktop/src/app/cron/blueprints.tsx @@ -106,7 +106,11 @@ export function BlueprintSlotControl({ // no inline expand form or divider. function BlueprintCard({ blueprint, onSetUp }: { blueprint: AutomationBlueprint; onSetUp: () => void }) { return ( -