about summary refs log tree commit diff
path: root/src/screens/PostThread/index.tsx
diff options
context:
space:
mode:
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 {