Skip to content

Commit

Permalink
fix confetti js lib inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramblurr committed May 15, 2024
1 parent 25191a3 commit 28f38ba
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/clj/app/insurance/routes.clj
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@
(ctmx/make-routes
"/insurance-survey/{policy-id}/"
(fn [req]
(layout/app-shell req
(view/survey-start-page req)
{:extra-scripts [[nil "confetti.js" :type :module]]}))))
(layout/app-shell req (view/survey-start-page req)))))

(defn insurance-coverage-create2 []
(ctmx/make-routes
Expand Down
1 change: 0 additions & 1 deletion src/clj/app/jobs/airtable.clj
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@

(defn make-airtable-job [{:keys [env gigo]}]
(fn [{:job/keys [frequency initial-delay]}]
(tap> "register airtable job")
(jobs/make-repeating-job (partial #'airtable-job gigo (:airtable env)) frequency initial-delay)))

(comment
Expand Down
1 change: 1 addition & 0 deletions src/clj/app/render.clj
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
(script req relative-prefix "nprogress.js")
(script req relative-prefix "[email protected]")
(script req relative-prefix "[email protected]")
(script req relative-prefix "confetti.js" :type :module)
(script req relative-prefix "[email protected]")
(script req relative-prefix "[email protected]")
(script req relative-prefix "[email protected]")
Expand Down

0 comments on commit 28f38ba

Please sign in to comment.