fixed wrong requirements
This commit is contained in:
parent
bc11d50bda
commit
38608fb7af
|
@ -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"]]
|
||||
|
|
|
@ -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}))
|
||||
|
|
|
@ -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")
|
||||
|
|
|
@ -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]))
|
||||
|
|
Loading…
Reference in New Issue