diff options
-rw-r--r-- | android/settings.gradle | 4 | ||||
-rw-r--r-- | ios/Podfile | 1 | ||||
-rw-r--r-- | src/view/com/composer/ComposePost.tsx | 8 |
3 files changed, 7 insertions, 6 deletions
diff --git a/android/settings.gradle b/android/settings.gradle index e6c53dc6b..3c22b7a2c 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,8 +1,4 @@ rootProject.name = 'app' -include ':@react-native-camera-roll_camera-roll' -project(':@react-native-camera-roll_camera-roll').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-camera-roll/camera-roll/android') -include ':@react-native-camera-roll_camera-roll' -project(':@react-native-camera-roll_camera-roll').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-camera-roll/camera-roll/android') apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' includeBuild('../node_modules/react-native-gradle-plugin') diff --git a/ios/Podfile b/ios/Podfile index abdbbf1d8..f9a45704c 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -20,7 +20,6 @@ target 'app' do :app_path => "#{Pod::Config.instance.installation_root}/.." ) - target 'appTests' do inherit! :complete # Pods for testing diff --git a/src/view/com/composer/ComposePost.tsx b/src/view/com/composer/ComposePost.tsx index 9fe6b78b3..ec0b0bf8d 100644 --- a/src/view/com/composer/ComposePost.tsx +++ b/src/view/com/composer/ComposePost.tsx @@ -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> |