diff options
| author | Brian Kim <brian@tagg.id> | 2021-06-16 23:11:49 +0900 |
|---|---|---|
| committer | Brian Kim <brian@tagg.id> | 2021-06-16 23:11:49 +0900 |
| commit | 41a9ecf350ccc1567e7cbf9c0a3413565d2397f7 (patch) | |
| tree | db18097a041c97ed418c2241a0c75e95f06aa28f /src/screens | |
| parent | 4a422e43c6a6deaeff5d8fcc692138454653e4b9 (diff) | |
Fix issue with background messing up appearance of AddComment elsewhere
Diffstat (limited to 'src/screens')
| -rw-r--r-- | src/screens/profile/MomentCommentsScreen.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/screens/profile/MomentCommentsScreen.tsx b/src/screens/profile/MomentCommentsScreen.tsx index 7dfe8ae9..402e5f44 100644 --- a/src/screens/profile/MomentCommentsScreen.tsx +++ b/src/screens/profile/MomentCommentsScreen.tsx @@ -48,9 +48,8 @@ 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({ |
