Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
chore: format object
Browse files Browse the repository at this point in the history
  • Loading branch information
gmsgowtham committed Sep 18, 2023
1 parent 20aa838 commit 89a3adc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/screens/Videos/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,23 +54,23 @@ const VideosScreen: FunctionComponent<VideosScreenProps> = ({ 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,
});
};

Expand Down

0 comments on commit 89a3adc

Please sign in to comment.