24 lines
1010 B
Diff
24 lines
1010 B
Diff
diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx
|
|
index 123456789..987654321 100644
|
|
--- a/src/view/screens/Profile.tsx
|
|
+++ b/src/view/screens/Profile.tsx
|
|
@@ -218,13 +218,13 @@ function ProfileScreenLoaded({
|
|
const showPostsTab = true
|
|
const showRepliesTab = hasSession
|
|
const showMediaTab = !hasLabeler
|
|
- const showVideosTab = !hasLabeler
|
|
+ const showVideosTab = false
|
|
const showLikesTab = isMe
|
|
const feedGenCount = profile.associated?.feedgens || 0
|
|
- const showFeedsTab = isMe || feedGenCount > 0
|
|
+ const showFeedsTab = false
|
|
const starterPackCount = profile.associated?.starterPacks || 0
|
|
- const showStarterPacksTab = isMe || starterPackCount > 0
|
|
+ const showStarterPacksTab = false
|
|
// subtract starterpack count from list count, since starterpacks are a type of list
|
|
const listCount = (profile.associated?.lists || 0) - starterPackCount
|
|
- const showListsTab = hasSession && (isMe || listCount > 0)
|
|
+ const showListsTab = false
|
|
|
|
const sectionTitles = [
|