diff --git a/src/components/CollectionsPage/CollectionsPage.tsx b/src/components/CollectionsPage/CollectionsPage.tsx
index 92a2db872..8ed5cc46e 100644
--- a/src/components/CollectionsPage/CollectionsPage.tsx
+++ b/src/components/CollectionsPage/CollectionsPage.tsx
@@ -306,12 +306,14 @@ export default function CollectionsPage(props: Props) {
handleTabChange(TABS.STANDARD_COLLECTIONS)}>
{t('collections_page.collections')}
- handleTabChange(TABS.THIRD_PARTY_COLLECTIONS)}
- >
- {t('collections_page.third_party_collections')}
-
+ {(isThirdPartyManager || isLinkedWearablesPaymentsEnabled) && (
+ handleTabChange(TABS.THIRD_PARTY_COLLECTIONS)}
+ >
+ {t('collections_page.third_party_collections')}
+
+ )}
{hasUserOrphanItems && (
// TODO: Remove tabs when there are no users with orphan items
handleTabChange(TABS.ITEMS)}>
@@ -376,6 +378,8 @@ export default function CollectionsPage(props: Props) {
isLoadingItems,
isLoadingCollections,
isLoadingOrphanItem,
+ isLinkedWearablesPaymentsEnabled,
+ isThirdPartyManager,
handlePageChange,
handleNewCollection,
renderGrid,