diff --git a/project.clj b/project.clj index 5d87c29..2cc1e4d 100644 --- a/project.clj +++ b/project.clj @@ -42,9 +42,7 @@ "descjop-figwheel" ["trampoline" "figwheel" "dev-front"] "descjop-once" ["do" ["cljsbuild" "once" "dev-main"] - ["cljsbuild" "once" "dev-front"] - ["cljsbuild" "once" "prod-main"] - ["cljsbuild" "once" "prod-front"]] + ["cljsbuild" "once" "dev-front"]] "descjop-once-dev" ["do" ["cljsbuild" "once" "dev-main"] ["cljsbuild" "once" "dev-front"]] diff --git a/src_front/status_desktop_front/core.cljs b/src_front/status_desktop_front/core.cljs index feaa838..a546fb3 100644 --- a/src_front/status_desktop_front/core.cljs +++ b/src_front/status_desktop_front/core.cljs @@ -8,7 +8,6 @@ status-desktop-front.ui.screens.events)) (defn mount-root [] - (println "ROOT") (reagent/render [chat] (.getElementById js/document "app"))) @@ -20,9 +19,8 @@ (defn init [] (re-frame/dispatch-sync [:init-app-db]) (mount-root) - (protocol/test-post-shh)) + (protocol/init-whisper!)) (defn init! [setting] - (println "RElOAD") (init)) ;(enable-re-frisk-remote! {:on-init init})) diff --git a/src_front/status_desktop_front/ui/components/icons.cljs b/src_front/status_desktop_front/ui/components/icons.cljs index 5b58a69..c7af8da 100644 --- a/src_front/status_desktop_front/ui/components/icons.cljs +++ b/src_front/status_desktop_front/ui/components/icons.cljs @@ -1,7 +1,7 @@ (ns status-desktop-front.ui.components.icons (:require-macros [status-desktop-front.utils :refer [slurp-web-svg]]) (:require [status-desktop-front.react-native-web :as react] - [status-im.components.styles :as styles])) + [status-im.ui.components.styles :as styles])) (def icons {:icons/chats (slurp-web-svg "../status-react/resources/icons/bottom/chats_gray.svg") :icons/chats-active (slurp-web-svg "../status-react/resources/icons/bottom/chats_active.svg") diff --git a/src_front/status_desktop_front/ui/components/tabs.cljs b/src_front/status_desktop_front/ui/components/tabs.cljs index 965b4c9..f687f0c 100644 --- a/src_front/status_desktop_front/ui/components/tabs.cljs +++ b/src_front/status_desktop_front/ui/components/tabs.cljs @@ -1,6 +1,6 @@ (ns status-desktop-front.ui.components.tabs (:require [status-desktop-front.react-native-web :as react] - [status-im.components.tabs.styles :as tabs.styles] + [status-im.ui.components.tabs.styles :as tabs.styles] [re-frame.core :as re-frame] [status-desktop-front.ui.components.icons :as icons]) (:require-macros [status-im.utils.views :as views]))