Remove stray console.log in attachment component

This commit is contained in:
arne 2025-11-20 15:02:18 +01:00
commit a5dea165af

View file

@ -317,7 +317,6 @@
(defn attachment [{:keys [attachment]}]
(let [preview-url (or (:preview_remote_url attachment) (:preview_url attachment))
remote-url (or (:remote_url attachment) (:url attachment))
_ (js/console.log :preview-url preview-url :remote_url remote-url :attachment attachment)
ext (last (str/split remote-url #"\."))]
(case (:type attachment)
"image" [:img {:src preview-url