Disable paste-link-to-quote flow when composing Private Mentions (#36690)

This commit is contained in:
Claire
2025-11-03 14:56:07 +01:00
committed by GitHub
parent 61c0daffc9
commit bae5877c84

View File

@@ -191,7 +191,8 @@ export const pasteLinkCompose = createDataLoadingThunk(
composeState.get('is_submitting') ||
composeState.get('poll') ||
composeState.get('is_uploading') ||
composeState.get('id')
composeState.get('id') ||
composeState.get('privacy') === 'direct'
)
return;