From 4cfcb0777567bea01174a090107b15aee5e47f5b Mon Sep 17 00:00:00 2001 From: ayushtom Date: Mon, 8 Jan 2024 15:21:25 +0530 Subject: [PATCH] fix: add extra check on boosted check --- components/quests/quest.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/quests/quest.tsx b/components/quests/quest.tsx index f6bd4c34..549677b2 100644 --- a/components/quests/quest.tsx +++ b/components/quests/quest.tsx @@ -82,7 +82,7 @@ const Quest: FunctionComponent = ({ )} - {boostedQuests.includes(id) ? ( + {boostedQuests?.length > 0 && boostedQuests?.includes(id) ? (