From 12c0e293fe2485c7fbab8432e8113cfd2d85ec32 Mon Sep 17 00:00:00 2001 From: charlie Date: Sun, 6 Nov 2022 16:16:01 +0800 Subject: [PATCH] chore: remove TODO tags --- src/main/frontend/mobile/graph_picker.cljs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/frontend/mobile/graph_picker.cljs b/src/main/frontend/mobile/graph_picker.cljs index cdd5e32d9f..19a1d8ef2e 100644 --- a/src/main/frontend/mobile/graph_picker.cljs +++ b/src/main/frontend/mobile/graph_picker.cljs @@ -52,10 +52,10 @@ (if (string/blank? graph-name) (notification/show! "Illegal graph folder name.") - ;; create graph directory under Logseq document folder - ;; TODO: icloud sync - (when-let [root (if icloud-sync-on? (state/get-icloud-container-root-url) - (state/get-local-container-root-url))] + ;; create graph directory under Logseq document folder (local/icloud) + (when-let [root (if icloud-sync-on? + (state/get-icloud-container-root-url) + (state/get-local-container-root-url))] (-> (validate-graph-dirname root graph-name) (p/then (fn [graph-path] (-> (fs/mkdir! graph-path)