diff --git a/src/screens/Videos/index.tsx b/src/screens/Videos/index.tsx index 98c8f9bc..fa5c15c4 100644 --- a/src/screens/Videos/index.tsx +++ b/src/screens/Videos/index.tsx @@ -54,23 +54,23 @@ const VideosScreen: FunctionComponent = ({ navigation }) => { const { title, - cloudinary_video_url: cover, user, - video_source_url: source, path, + cloudinary_video_url: cover, + video_source_url: source, video_duration_in_minutes: duration, } = video; navigation.navigate("Video", { id, title, - url: `${DEV_TO_HOST}${path}`, source, cover, + duration, + url: `${DEV_TO_HOST}${path}`, author: { name: user.name, }, - duration, }); };