diff --git a/src/view/screens/ProfileFeed.tsx b/src/view/screens/ProfileFeed.tsx index 270e59eea7..a112a5229b 100644 --- a/src/view/screens/ProfileFeed.tsx +++ b/src/view/screens/ProfileFeed.tsx @@ -169,9 +169,6 @@ export function ProfileFeedScreenInner({ const feedSectionRef = React.useRef(null) const isScreenFocused = useIsFocused() const gate = useGate() - const isPrimaryAlgoExperimentEnabled = gate( - 'reduced_onboarding_and_home_algo', - ) const primaryAlgoDialogControl = useDialogControl() const primaryAlgo = preferences.primaryAlgorithm @@ -329,7 +326,7 @@ export function ProfileFeedScreenInner({ {feedInfo && hasSession && ( <> - {isPrimaryAlgoExperimentEnabled && isPrimaryAlgo ? ( + {gate('reduced_onboarding_and_home_algo') && isPrimaryAlgo ? (