diff --git a/app/[addressOrDomain]/page.tsx b/app/[addressOrDomain]/page.tsx index aa527123..b4de7083 100644 --- a/app/[addressOrDomain]/page.tsx +++ b/app/[addressOrDomain]/page.tsx @@ -351,6 +351,7 @@ export default function Page({ params }: AddressOrDomainProps) { label={`Completed (${completedQuests.length})`} {...a11yProps(0)} /> + {claimableQuests.length > 0 ? ( + ) : null} diff --git a/components/pages/home/questAndCollectionTabs.tsx b/components/pages/home/questAndCollectionTabs.tsx index d73434f0..04fa7234 100644 --- a/components/pages/home/questAndCollectionTabs.tsx +++ b/components/pages/home/questAndCollectionTabs.tsx @@ -163,6 +163,8 @@ const QuestAndCollectionTabs: FunctionComponent< {...a11yProps(1)} /> {address && ( + <> + {displayBoosts.length > 0 ? ( + /> + ) : null } + )}