remove limit 2000 from backend call

This commit is contained in:
Travis Shears 2026-03-08 22:50:34 +01:00
parent 95152a12ee
commit 48dcb9c5a5
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469

View file

@ -34,7 +34,7 @@
;; interact with backend api ;; interact with backend api
(defn fetch-snippets [] (defn fetch-snippets []
(let [res (http/get (str (:backend-host config) "/api/snippets?limit=2000"))] (let [res (http/get (str (:backend-host config) "/api/snippets"))]
(json/parse-string (:body res) true))) (json/parse-string (:body res) true)))
(defn fetch-snippet [id] (defn fetch-snippet [id]