Skip to content

Commit

Permalink
Switch back to 1s
Browse files Browse the repository at this point in the history
  • Loading branch information
Negabinary committed Oct 31, 2024
1 parent 7a41ff7 commit 0b4eb93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/haz3lweb/Main.re
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ let apply = (model, action, ~schedule_action, ~schedule_autosave): Model.t => {
if (UpdateAction.is_edit(action)) {
schedule_autosave(
BonsaiUtil.Alarm.Action.SetAlarm(
Core.Time_ns.add(Core.Time_ns.now(), Core.Time_ns.Span.of_sec(2.0)),
Core.Time_ns.add(Core.Time_ns.now(), Core.Time_ns.Span.of_sec(1.0)),
),
);
} else {
schedule_autosave(
BonsaiUtil.Alarm.Action.SnoozeAlarm(
Core.Time_ns.add(Core.Time_ns.now(), Core.Time_ns.Span.of_sec(2.0)),
Core.Time_ns.add(Core.Time_ns.now(), Core.Time_ns.Span.of_sec(1.0)),
),
);
};
Expand Down

0 comments on commit 0b4eb93

Please sign in to comment.