Skip to content

Commit

Permalink
Only use animated loading skeleton for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
Parveshdhull committed Sep 27, 2023
1 parent 79f7b6c commit 603db1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/status_im2/contexts/chat/messages/list/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@
loading-indicator-page-loading-height)]
(when (or loading-messages? (not all-loaded?))
[rn/view {:padding-top top-spacing}
[quo/skeleton-list (skeleton-list-props :messages parent-height true)]])))
;; Only use animated loading skeleton for ios
;; https://github.com/status-im/status-mobile/issues/17426
[quo/skeleton-list (skeleton-list-props :messages parent-height platform/ios?)]])))

(defn list-header
[insets able-to-send-message? theme]
Expand Down

0 comments on commit 603db1e

Please sign in to comment.