about summary refs log tree commit diff
path: root/src/screens/PostThread/index.tsx
diff options
context:
space:
mode:
authorAlex Benzer <abenzer@users.noreply.github.com>2025-08-26 08:52:38 -0700
committerGitHub <noreply@github.com>2025-08-26 08:52:38 -0700
commitacd7211b357f2bfc74bf0828994e12f0c41d39d5 (patch)
tree34a09d23bf3862ccb9683ba4975e3af0889c11d0 /src/screens/PostThread/index.tsx
parentb70e5b2f387e8de6dac5d388aee1ccbf5b217adc (diff)
downloadvoidsky-acd7211b357f2bfc74bf0828994e12f0c41d39d5.tar.zst
Adds signup CTA tests for logged-out visitors (#8906)
Diffstat (limited to 'src/screens/PostThread/index.tsx')
-rw-r--r--src/screens/PostThread/index.tsx3
1 files changed, 3 insertions, 0 deletions
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 */}
+              <LoggedOutCTA style={a.px_lg} gateName="cta_above_post_replies" />
             </View>
           )
         } else {