diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-01-23 13:03:54 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2024-01-23 13:03:54 +0100 |
commit | 8258620eab20b4a53e6cc921d884b0aa886b8565 (patch) | |
tree | 6d27a8b68b128cf155fd837f6a1faf9796f7b219 /src/frontend/tubo/views/channel.cljs | |
parent | 552d4c01aec14263310222f1b92f7a7e2349ce2b (diff) |
feat(frontend): move loading icon to layout components
Diffstat (limited to 'src/frontend/tubo/views/channel.cljs')
-rw-r--r-- | src/frontend/tubo/views/channel.cljs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/frontend/tubo/views/channel.cljs b/src/frontend/tubo/views/channel.cljs index 643acaf..00dc12f 100644 --- a/src/frontend/tubo/views/channel.cljs +++ b/src/frontend/tubo/views/channel.cljs @@ -3,7 +3,6 @@ [re-frame.core :as rf] [tubo.components.items :as items] [tubo.components.layout :as layout] - [tubo.components.loading :as loading] [tubo.events :as events])) (defn channel @@ -12,8 +11,6 @@ related-streams next-page]} @(rf/subscribe [:channel]) next-page-url (:url next-page) service-color @(rf/subscribe [:service-color]) - page-loading? @(rf/subscribe [:show-page-loading]) - pagination-loading? @(rf/subscribe [:show-pagination-loading]) scrolled-to-bottom? @(rf/subscribe [:scrolled-to-bottom])] (when scrolled-to-bottom? (rf/dispatch [::events/channel-pagination url next-page-url])) |