diff --git a/src/modules/Elsa.Scheduling/Activities/Timer.cs b/src/modules/Elsa.Scheduling/Activities/Timer.cs index 11b7dd0c0..94e1409ec 100644 --- a/src/modules/Elsa.Scheduling/Activities/Timer.cs +++ b/src/modules/Elsa.Scheduling/Activities/Timer.cs @@ -34,7 +34,7 @@ public class Timer : EventGenerator /// The interval at which the timer should execute. /// [Input(Description = "The interval at which the timer should execute.", DefaultValue = "00:01:00")] - public Input Interval { get; set; } = default!; + public Input Interval { get; set; } = new(TimeSpan.FromMinutes(1)); /// protected override async ValueTask ExecuteAsync(ActivityExecutionContext context)