Skip to content

Commit

Permalink
fix feed interval
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreybakker committed Aug 21, 2023
1 parent dd2bd72 commit dbe9bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/feed/util/feed-grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const feedReducer: React.Reducer<FeedType, FeedActionType> = (state, action) =>
break;
case "start":
if (state.cron) break;
state.cron = setInterval(action.iter, 500);
state.cron = setInterval(action.iter, 4000);

break;
case "stop":
Expand Down

0 comments on commit dbe9bb4

Please sign in to comment.