diff options
author | Brian Kim <brian@tagg.id> | 2021-06-15 12:21:53 +0900 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-06-15 12:21:53 +0900 |
commit | 6ee452c257d388913a1effd817c37bef638bc179 (patch) | |
tree | fbba8144adf7b3177c0014b687440a5450019818 /src/screens/profile/CaptionScreen.tsx | |
parent | bc2c093e9342ed8deb98652d1c278417dd6435f3 (diff) |
Fix bug in caption screen of suggestions not disappearing
Diffstat (limited to 'src/screens/profile/CaptionScreen.tsx')
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 05095d16..755c668b 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -13,7 +13,7 @@ import { TouchableWithoutFeedback, View, } from 'react-native'; -import {MentionInput} from 'react-native-controlled-mentions'; +import {MentionInputControlled} from '../../components'; import {Button, normalize} from 'react-native-elements'; import {useDispatch, useSelector} from 'react-redux'; import FrontArrow from '../../assets/icons/front-arrow.svg'; @@ -161,7 +161,7 @@ const CaptionScreen: React.FC<CaptionScreenProps> = ({route, navigation}) => { source={{uri: image.path}} resizeMode={'cover'} /> - <MentionInput + <MentionInputControlled containerStyle={styles.text} placeholder="Write something....." placeholderTextColor="gray" |