diff --git a/src/components/MovieDetails/index.tsx b/src/components/MovieDetails/index.tsx index ee2dd525a..e00d194fb 100644 --- a/src/components/MovieDetails/index.tsx +++ b/src/components/MovieDetails/index.tsx @@ -143,11 +143,16 @@ const MovieDetails: React.FC = ({ movie }) => {

{data.title}

- {' '} - | {data.genres.map((g) => g.name).join(', ')} + {(data.runtime ?? 0) > 0 && ( + <> + {' '} + |{' '} + + )} + {data.genres.map((g) => g.name).join(', ')}