From c5cdb1033c1b129634084918f32e65ed123ecfd3 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 17 Jun 2024 11:11:06 -0700 Subject: [PATCH] remove dev gate --- src/view/screens/Profile.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx index de3df8cd28..9d47642632 100644 --- a/src/view/screens/Profile.tsx +++ b/src/view/screens/Profile.tsx @@ -27,7 +27,6 @@ import {useAgent, useSession} from '#/state/session' import {useSetDrawerSwipeDisabled, useSetMinimalShellMode} from '#/state/shell' import {useComposerControls} from '#/state/shell/composer' import {useAnalytics} from 'lib/analytics/analytics' -import {IS_DEV, IS_TESTFLIGHT} from 'lib/app-info' import {useSetTitle} from 'lib/hooks/useSetTitle' import {ComposeIcon2} from 'lib/icons' import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' @@ -200,8 +199,7 @@ function ProfileScreenLoaded({ const showLikesTab = isMe const showFeedsTab = isMe || (profile.associated?.feedgens || 0) > 0 const showStarterPacksTab = - (isMe || !!starterPacksQuery.data?.pages?.[0].starterPacks.length) && - (IS_TESTFLIGHT || IS_DEV) + isMe || !!starterPacksQuery.data?.pages?.[0].starterPacks.length const showListsTab = hasSession && (isMe || (profile.associated?.lists || 0) > 0)