Rename, comment

This commit is contained in:
Eric Bailey
2025-06-10 14:40:11 -05:00
parent 8fa2eda8fa
commit 087246e1ee
2 changed files with 9 additions and 4 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ import {useGate} from '#/lib/statsig/statsig'
import {makeRecordUri} from '#/lib/strings/url-helpers'
import {useSetMinimalShellMode} from '#/state/shell'
import {PostThread as PostThreadComponent} from '#/view/com/post-thread/PostThread'
import {Inner} from '#/screens/PostThread'
import {PostThread} from '#/screens/PostThread'
import * as Layout from '#/components/Layout'
type Props = NativeStackScreenProps<CommonNavigatorParams, 'PostThread'>
@@ -29,7 +29,7 @@ export function PostThreadScreen({route}: Props) {
return (
<Layout.Screen testID="postThreadScreen">
{gate('post_threads_v2_unspecced') || __DEV__ ? (
<Inner uri={uri} />
<PostThread uri={uri} />
) : (
<PostThreadComponent uri={uri} />
)}