···13/**
14 * The env the app is running in e.g. development, testflight, production, e2e
15 */
16-export const ENV: string = process.env.EXPO_PUBLIC_ENV
000001718/**
19 * Indicates whether the app is running in TestFlight
···13/**
14 * The env the app is running in e.g. development, testflight, production, e2e
15 */
16+export const ENV: string = process.env.EXPO_PUBLIC_ENV as
17+ | 'production'
18+ | 'testflight'
19+ | 'development'
20+ | 'e2e'
21+ | (string & {})
2223/**
24 * Indicates whether the app is running in TestFlight
+2-1
src/view/com/posts/PostFeedItem.tsx
···50import {DiscoverDebug} from '#/components/PostControls/DiscoverDebug'
51import {RichText} from '#/components/RichText'
52import {SubtleHover} from '#/components/SubtleHover'
053import * as bsky from '#/types/bsky'
54import {PostFeedReason} from './PostFeedReason'
55···181 feedContext,
182 reqId,
183 })
184- if (gate('feed_reply_button_open_thread')) {
185 navigation.navigate('PostThread', {
186 name: post.author.did,
187 rkey,
···50import {DiscoverDebug} from '#/components/PostControls/DiscoverDebug'
51import {RichText} from '#/components/RichText'
52import {SubtleHover} from '#/components/SubtleHover'
53+import {ENV} from '#/env'
54import * as bsky from '#/types/bsky'
55import {PostFeedReason} from './PostFeedReason'
56···182 feedContext,
183 reqId,
184 })
185+ if (gate('feed_reply_button_open_thread') && ENV !== 'e2e') {
186 navigation.navigate('PostThread', {
187 name: post.author.did,
188 rkey,