diff --git a/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs b/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs index 570df9077..380d37c12 100644 --- a/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/sidebar.cljs @@ -192,12 +192,14 @@ {::mf/wrap [mf/memo] ::mf/wrap-props false} [_props] + (let [show-sets-section? false] ;; temporarily added this variable to see/hide the sets section till we have it working end to end [:div {:class (stl/css :sidebar-tab-wrapper)} + (when show-sets-section? [:div {:class (stl/css :sets-section-wrapper)} - [:& sets-sidebar]] + [:& sets-sidebar]]) [:div {:class (stl/css :tokens-section-wrapper)} [:& tokens-explorer]] [:button {:class (stl/css :download-json-button) :on-click wtc/download-tokens-as-json} download-icon - "Export JSON"]]) + "Export JSON"]]))