From cd3f30e03e06a2d3a7c5da5952a7848d868f2ecc Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 22 Oct 2020 12:44:26 -0400 Subject: [PATCH] don't pass fee_amount: >=0 when nothing is set to avoid timeouts --- ui/component/claimListDiscover/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/claimListDiscover/view.jsx b/ui/component/claimListDiscover/view.jsx index 26e3a3ee0..ba4721203 100644 --- a/ui/component/claimListDiscover/view.jsx +++ b/ui/component/claimListDiscover/view.jsx @@ -129,7 +129,7 @@ function ClaimListDiscover(props: Props) { const durationParam = urlParams.get(CS.DURATION_KEY) || null; const channelIdsInUrl = urlParams.get(CS.CHANNEL_IDS_KEY); const channelIdsParam = channelIdsInUrl ? channelIdsInUrl.split(',') : channelIds; - const feeAmountParam = urlParams.get('fee_amount') || feeAmount || CS.FEE_AMOUNT_ANY; + const feeAmountParam = urlParams.get('fee_amount') || feeAmount; const originalPageSize = pageSize || CS.PAGE_SIZE; const dynamicPageSize = isLargeScreen ? Math.ceil(originalPageSize * (3 / 2)) : originalPageSize; let orderParam = orderBy || urlParams.get(CS.ORDER_BY_KEY) || defaultOrderBy;