diff --git a/src/status_im/ui/components/list/views.cljs b/src/status_im/ui/components/list/views.cljs index 1fbdd5b987..cf3a6d47b6 100644 --- a/src/status_im/ui/components/list/views.cljs +++ b/src/status_im/ui/components/list/views.cljs @@ -142,7 +142,9 @@ (defn- wrap-render-section-header-fn [f] (fn [data] - (reagent/as-element (f (.-section data))))) + (let [section (.-section data)] + (reagent/as-element (f {:title (.-title section) + :data (.-data section)}))))) (defn- default-render-section-header [{:keys [title data]}] (when (seq data)