diff options
Diffstat (limited to 'components/watch/primary/details.tsx')
| -rw-r--r-- | components/watch/primary/details.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/watch/primary/details.tsx b/components/watch/primary/details.tsx index dd739f2..4ff1be5 100644 --- a/components/watch/primary/details.tsx +++ b/components/watch/primary/details.tsx @@ -28,7 +28,7 @@ export default function Details({ onList, setOnList, handleOpen, - disqus, + disqus }: DetailsProps) { const [showComments, setShowComments] = useState(false); const { markPlanning } = useAniList(session); @@ -65,7 +65,7 @@ export default function Details({ {info ? ( <Link className="hover:scale-105 hover:shadow-lg duration-300 ease-out" - href={`/en/anime/${id}`} + href={`/en/anime/${info.id}`} > <Image src={info.coverImage.extraLarge} @@ -170,7 +170,7 @@ export default function Details({ ? description : description?.length > 420 ? truncatedDesc - : description, + : description }} className={`p-5 text-sm font-light font-roboto text-[#e4e4e4] `} /> @@ -224,7 +224,7 @@ export default function Details({ title: info.title.romaji, url: window.location.href, episode: epiNumber, - name: disqus, + name: disqus }} /> </div> |