aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/comments/AddComment.tsx2
-rw-r--r--src/components/moments/MomentCommentPreview.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/comments/AddComment.tsx b/src/components/comments/AddComment.tsx
index 01325475..4a1822a3 100644
--- a/src/components/comments/AddComment.tsx
+++ b/src/components/comments/AddComment.tsx
@@ -130,7 +130,7 @@ const AddComment: React.FC<AddCommentProps> = ({momentId, placeholderText}) => {
const styles = StyleSheet.create({
container: {
- backgroundColor: '#f7f7f7',
+ // backgroundColor: '#f7f7f7',
alignItems: 'center',
justifyContent: 'center',
width: SCREEN_WIDTH,
diff --git a/src/components/moments/MomentCommentPreview.tsx b/src/components/moments/MomentCommentPreview.tsx
index f6b9d75b..d4729888 100644
--- a/src/components/moments/MomentCommentPreview.tsx
+++ b/src/components/moments/MomentCommentPreview.tsx
@@ -9,7 +9,7 @@ import {mentionPartTypes, renderTextWithMentions} from '../../utils/comments';
interface MomentCommentPreviewProps {
momentId: string;
- commentsCount: number | null;
+ commentsCount: number;
commentPreview: MomentCommentPreviewType | null;
screenType: ScreenType;
}