diff options
| author | Brian Kim <brian@tagg.id> | 2021-07-08 11:10:54 -0400 |
|---|---|---|
| committer | Brian Kim <brian@tagg.id> | 2021-07-08 11:10:54 -0400 |
| commit | ac4318fa0e1556f60bf41b8afdbad69477c764a1 (patch) | |
| tree | 06768824369052836fbeea2a9b596cc8a2424142 /src/screens/profile | |
| parent | 9940cfdf9d55fc6bb505e68a315373babad46bae (diff) | |
Fix linting
Diffstat (limited to 'src/screens/profile')
| -rw-r--r-- | src/screens/profile/MomentCommentsScreen.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/profile/MomentCommentsScreen.tsx b/src/screens/profile/MomentCommentsScreen.tsx index 402e5f44..7dfe8ae9 100644 --- a/src/screens/profile/MomentCommentsScreen.tsx +++ b/src/screens/profile/MomentCommentsScreen.tsx @@ -48,8 +48,9 @@ const MomentCommentsScreen: React.FC<MomentCommentsScreenProps> = ({route}) => { React.useState(true); //Keeps track of the current comments object in focus so that the application knows which comment to post a reply to - const [commentTapped, setCommentTapped] = - useState<CommentType | CommentThreadType | undefined>(); + const [commentTapped, setCommentTapped] = useState< + CommentType | CommentThreadType | undefined + >(); useEffect(() => { navigation.setOptions({ |
