Skip to content

Commit

Permalink
fix issue (#19808)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmilad75 committed Apr 29, 2024
1 parent e8008d0 commit bd192b0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@
(on-long-press collectible))}]))

(defn view
[{:keys [theme collectibles filtered? on-collectible-press on-end-reached current-account-address
[{:keys [collectibles filtered? on-collectible-press on-end-reached current-account-address
on-collectible-long-press]}]
(let [no-results-match-query? (and filtered? (empty? collectibles))]
(let [no-results-match-query? (and filtered? (empty? collectibles))
theme (quo.theme/use-theme)]
(cond
no-results-match-query?
[rn/view {:style {:flex 1 :justify-content :center}}
Expand Down

0 comments on commit bd192b0

Please sign in to comment.