From df2ed078b3655cc47a5ec6247c6c28ef4747fd28 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 17 Jan 2022 12:06:59 -0500 Subject: [PATCH] Fix collection filter --- ui/component/claimListDiscover/view.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/component/claimListDiscover/view.jsx b/ui/component/claimListDiscover/view.jsx index d3a37ab7f..fd7846301 100644 --- a/ui/component/claimListDiscover/view.jsx +++ b/ui/component/claimListDiscover/view.jsx @@ -212,6 +212,9 @@ function ClaimListDiscover(props: Props) { if (contentTypeParam) { switch (contentTypeParam) { case CS.CLAIM_COLLECTION: + claimTypeParam = contentTypeParam; + streamTypeParam = undefined; + break; case CS.CLAIM_REPOST: claimTypeParam = contentTypeParam; break;