aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-06-25 18:01:41 -0400
committerIvan Chen <ivan@tagg.id>2021-06-25 18:01:41 -0400
commitdcf45600b6e2be7820ed2d8c0f44603624f1e719 (patch)
tree17f2e23576c000bcc90d840d14b8abc3bb9bec24 /src
parent7009b08b83997152db97b3710d923029ed11a75a (diff)
Lint
Diffstat (limited to 'src')
-rw-r--r--src/components/comments/CommentTextField.tsx19
-rw-r--r--src/components/moments/MomentPost.tsx10
2 files changed, 8 insertions, 21 deletions
diff --git a/src/components/comments/CommentTextField.tsx b/src/components/comments/CommentTextField.tsx
index 65a237e7..6d86eb3f 100644
--- a/src/components/comments/CommentTextField.tsx
+++ b/src/components/comments/CommentTextField.tsx
@@ -1,8 +1,8 @@
import React, {FC, ReactFragment} from 'react';
import {
NativeSyntheticEvent,
- StyleSheet,
StyleProp,
+ StyleSheet,
Text,
TextInput,
TextInputSelectionChangeEventData,
@@ -10,22 +10,21 @@ import {
View,
ViewStyle,
} from 'react-native';
-import {useSelector} from 'react-redux';
-import {TAGG_LIGHT_BLUE} from '../../constants';
-import {RootState} from '../../store/rootReducer';
import {
+ MentionPartType,
Part,
PartType,
- MentionPartType,
} from 'react-native-controlled-mentions/dist/types';
import {
defaultMentionTextStyle,
isMentionPartType,
} from 'react-native-controlled-mentions/dist/utils';
-import {Avatar} from '../common';
-import {normalize} from '../../utils';
-
+import {useSelector} from 'react-redux';
import UpArrowIcon from '../../assets/icons/up_arrow.svg';
+import {TAGG_LIGHT_BLUE} from '../../constants';
+import {RootState} from '../../store/rootReducer';
+import {normalize} from '../../utils';
+import {Avatar} from '../common';
type CommentTextFieldProps = {
containerStyle: StyleProp<ViewStyle>;
@@ -40,8 +39,6 @@ type CommentTextFieldProps = {
) => null;
parts: Part[];
addComment: () => any;
- theme?: 'dark' | 'white';
- keyboardVisible?: boolean;
comment?: string;
};
@@ -56,8 +53,6 @@ const CommentTextField: FC<CommentTextFieldProps> = ({
handleSelectionChange,
parts,
addComment,
- theme = 'white',
- keyboardVisible = true,
comment = '',
...textInputProps
}) => {
diff --git a/src/components/moments/MomentPost.tsx b/src/components/moments/MomentPost.tsx
index e55c93ba..cb3a138b 100644
--- a/src/components/moments/MomentPost.tsx
+++ b/src/components/moments/MomentPost.tsx
@@ -1,13 +1,5 @@
import {useNavigation} from '@react-navigation/native';
-import React, {
- createRef,
- LegacyRef,
- MutableRefObject,
- useContext,
- useEffect,
- useRef,
- useState,
-} from 'react';
+import React, {useContext, useEffect, useRef, useState} from 'react';
import {
Image,
KeyboardAvoidingView,