Skip to content

Commit

Permalink
fix: correct link to correct keyword results for series (#3208)
Browse files Browse the repository at this point in the history
  • Loading branch information
sct committed Jan 5, 2023
1 parent 9d3446d commit 4e9be7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TvDetails/index.tsx
Expand Up @@ -499,7 +499,7 @@ const TvDetails = ({ tv }: TvDetailsProps) => {
<div className="mt-6">
{data.keywords.map((keyword) => (
<Link
href={`/discover/movies/keyword?keywords=${keyword.id}`}
href={`/discover/tv/keyword?keywords=${keyword.id}`}
key={`keyword-id-${keyword.id}`}
>
<a className="mb-2 mr-2 inline-flex last:mr-0">
Expand Down

0 comments on commit 4e9be7a

Please sign in to comment.