aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
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);
}