diff options
author | Brian Kim <brian@tagg.id> | 2021-06-17 16:21:57 +0900 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-06-17 16:21:57 +0900 |
commit | 6fcd7b41cd763e95733187c6c4d48ddb6e9bd01a (patch) | |
tree | 44647b93c36ef4e99c5243f38e0b98427cb27de4 /src/components/comments/AddComment.tsx | |
parent | 867484bac72a64231e57f96fdc4ce813930f75f6 (diff) |
Made edits
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: { |