Skip to content

Commit

Permalink
fix: default value :scheduled/future-days is 7
Browse files Browse the repository at this point in the history
  • Loading branch information
tiensonqin committed Apr 7, 2023
1 parent fdef07d commit bdc15d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/frontend/state.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ should be done through this fn in order to get global config and config defaults
(defn get-scheduled-future-days
[]
(let [days (:scheduled/future-days (get-config))]
(or (when (int? days) days) 14)))
(or (when (int? days) days) 7)))

(defn get-start-of-week
[]
Expand Down

0 comments on commit bdc15d0

Please sign in to comment.