aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-07-01 17:21:20 -0400
committerIvan Chen <ivan@tagg.id>2021-07-01 17:21:20 -0400
commitad2f052c6d2cd1b50cc01200597b5b79cb33082d (patch)
tree164852b257ab961fb8d4a067189b85e0aadcc180 /src/components
parentdb52644a3145eac7ac9bb14f3f20f36e8d8654ec (diff)
Remove TODOs and comments
Diffstat (limited to 'src/components')
-rw-r--r--src/components/moments/Moment.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/moments/Moment.tsx b/src/components/moments/Moment.tsx
index 6850f154..1e1cadce 100644
--- a/src/components/moments/Moment.tsx
+++ b/src/components/moments/Moment.tsx
@@ -43,7 +43,6 @@ const Moment: React.FC<MomentProps> = ({
}) => {
const navigation = useNavigation();
- // TODO: remove this later, tmp solution for handling videos
const navigateToCaptionScreenForVideo = (uri: string) => {
navigation.navigate('CaptionScreen', {
screenType,
@@ -114,7 +113,6 @@ const Moment: React.FC<MomentProps> = ({
mediaType: 'video',
})
.then((vid) => {
- console.log(vid);
if (vid.path) {
navigateToCaptionScreenForVideo(vid.path);
}