From 1f2762af021a46b48ed735b3d7bccdc805420b3c Mon Sep 17 00:00:00 2001 From: zeppi Date: Sun, 1 Aug 2021 16:38:00 -0400 Subject: [PATCH] tags patch --- ui/page/discover/view.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/page/discover/view.jsx b/ui/page/discover/view.jsx index 1783756a3..14a9705a5 100644 --- a/ui/page/discover/view.jsx +++ b/ui/page/discover/view.jsx @@ -125,9 +125,11 @@ function DiscoverPage(props: Props) { // Assume wild west page if no dynamicRouteProps // Not a very good solution, but just doing it for now // until we are sure this page will stay around + // TODO: find a better way to determine discover / wild west vs other modes release times + // for now including && !tags so that releaseTime={ SIMPLE_SITE - ? !dynamicRouteProps && `>${Math.floor(moment().subtract(1, 'day').startOf('week').unix())}` + ? !dynamicRouteProps && !tags && `>${Math.floor(moment().subtract(1, 'day').startOf('week').unix())}` : undefined } feeAmount={SIMPLE_SITE ? !dynamicRouteProps && CS.FEE_AMOUNT_ANY : undefined}