From 1f7b3b37ab55cee8c97151e0866af510b62f248c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 19 Dec 2016 08:35:31 +0100 Subject: [PATCH] Fix syntax error on ui (introduced in previous commit). --- frontend/src/uxbox/main/ui.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/uxbox/main/ui.cljs b/frontend/src/uxbox/main/ui.cljs index 90211265ed..4653657656 100644 --- a/frontend/src/uxbox/main/ui.cljs +++ b/frontend/src/uxbox/main/ui.cljs @@ -166,7 +166,7 @@ (defn init [] - (rt/init routes)) + (rt/init routes) (mx/mount (app) (dom/get-element "app")) (mx/mount (lightbox) (dom/get-element "lightbox")) (mx/mount (loader) (dom/get-element "loader")))