diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-07-09 12:37:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-09 12:37:55 -0400 |
| commit | a6a5f40650d43854b06aca1f228da99c1014c671 (patch) | |
| tree | f70c333a0fb2b1792feb98711269fee5027449d0 /src/screens/profile | |
| parent | 083675eec3ff5b7122e43097fe565afb78beec46 (diff) | |
| parent | e62ba8ca223d92f662016445264030d28009288f (diff) | |
Merge pull request #492 from brian-tagg/tma968-new-moment-tagging
[TMA-968] New Moment Tagging Flow
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({ |
