51 lines
2.1 KiB
Diff
51 lines
2.1 KiB
Diff
--- a/src/view/com/posts/PostFeed.tsx 2026-02-16 02:19:59
|
|
+++ b/src/view/com/posts/PostFeed.tsx 2026-02-16 02:20:13
|
|
@@ -519,16 +519,17 @@
|
|
key: 'liveEventFeedsAndTrendingBanner-' + sliceIndex,
|
|
})
|
|
// Show composer prompt for Discover and Following feeds
|
|
- if (
|
|
- hasSession &&
|
|
- (feedUriOrActorDid === DISCOVER_FEED_URI ||
|
|
- feed === 'following')
|
|
- ) {
|
|
- arr.push({
|
|
- type: 'composerPrompt',
|
|
- key: 'composerPrompt-' + sliceIndex,
|
|
- })
|
|
- }
|
|
+ // Disabled: hide composer prompt
|
|
+ // if (
|
|
+ // hasSession &&
|
|
+ // (feedUriOrActorDid === DISCOVER_FEED_URI ||
|
|
+ // feed === 'following')
|
|
+ // ) {
|
|
+ // arr.push({
|
|
+ // type: 'composerPrompt',
|
|
+ // key: 'composerPrompt-' + sliceIndex,
|
|
+ // })
|
|
+ // }
|
|
} else if (sliceIndex === 15) {
|
|
if (areVideoFeedsEnabled && !trendingVideoDisabled) {
|
|
arr.push({
|
|
@@ -545,12 +546,13 @@
|
|
} else if (feedKind === 'following') {
|
|
if (sliceIndex === 0) {
|
|
// Show composer prompt for Following feed
|
|
- if (hasSession) {
|
|
- arr.push({
|
|
- type: 'composerPrompt',
|
|
- key: 'composerPrompt-' + sliceIndex,
|
|
- })
|
|
- }
|
|
+ // Disabled: hide composer prompt
|
|
+ // if (hasSession) {
|
|
+ // arr.push({
|
|
+ // type: 'composerPrompt',
|
|
+ // key: 'composerPrompt-' + sliceIndex,
|
|
+ // })
|
|
+ // }
|
|
}
|
|
} else if (feedKind === 'profile') {
|
|
if (sliceIndex === 5) {
|