From acd7211b357f2bfc74bf0828994e12f0c41d39d5 Mon Sep 17 00:00:00 2001 From: Alex Benzer Date: Tue, 26 Aug 2025 08:52:38 -0700 Subject: Adds signup CTA tests for logged-out visitors (#8906) --- src/screens/PostThread/index.tsx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/screens/PostThread/index.tsx') diff --git a/src/screens/PostThread/index.tsx b/src/screens/PostThread/index.tsx index 7432f71db..9cb4173e3 100644 --- a/src/screens/PostThread/index.tsx +++ b/src/screens/PostThread/index.tsx @@ -38,6 +38,7 @@ import { import {atoms as a, native, platform, useBreakpoints, web} from '#/alf' import * as Layout from '#/components/Layout' import {ListFooter} from '#/components/Lists' +import {LoggedOutCTA} from '#/components/LoggedOutCTA' const PARENT_CHUNK_SIZE = 5 const CHILDREN_CHUNK_SIZE = 50 @@ -405,6 +406,8 @@ export function PostThread({uri}: {uri: string}) { onPostSuccess={optimisticOnPostReply} postSource={anchorPostSource} /> + {/* Show CTA for logged-out visitors */} + ) } else { -- cgit 1.4.1