diff options
Diffstat (limited to 'src/components/comments/AddComment.tsx')
-rw-r--r-- | src/components/comments/AddComment.tsx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/comments/AddComment.tsx b/src/components/comments/AddComment.tsx index fd7d819a..8a4ec082 100644 --- a/src/components/comments/AddComment.tsx +++ b/src/components/comments/AddComment.tsx @@ -13,11 +13,10 @@ import {CommentContext} from '../../screens/profile/MomentCommentsScreen'; import {postComment} from '../../services'; import {updateReplyPosted} from '../../store/actions'; import {CommentThreadType, CommentType} from '../../types'; -import {SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; +import {SCREEN_HEIGHT, SCREEN_WIDTH, normalize} from '../../utils'; import {mentionPartTypes} from '../../utils/comments'; import {CommentTextField} from './CommentTextField'; import MentionInputControlled from './MentionInputControlled'; -import {normalize} from 'react-native-elements'; export interface AddCommentProps { momentId: string; @@ -169,11 +168,10 @@ const styles = StyleSheet.create({ justifyContent: 'space-between', margin: '3%', borderRadius: 25, - height: normalize(40), + height: normalize(45), }, text: { flex: 1, - // padding: '1%', maxHeight: 100, }, avatar: { |