change post test with photo attached;

remove auto linking settings
This commit is contained in:
João Ferreiro 2022-11-29 16:45:44 +00:00
parent 58aa4f0436
commit 3b899bfc66
3 changed files with 7 additions and 6 deletions

View file

@ -223,7 +223,13 @@ export const ComposePost = observer(function ComposePost({
multiline
scrollEnabled
onChangeText={(text: string) => onChangeText(text)}
placeholder={replyTo ? 'Write your reply' : "What's up?"}
placeholder={
replyTo
? 'Write your reply'
: selectedPhotos.length !== 0
? 'Write a comment'
: "What's up?"
}
style={styles.textInput}>
{textDecorated}
</TextInput>