Skip to content

Commit

Permalink
back to Link
Browse files Browse the repository at this point in the history
  • Loading branch information
ncukondo committed Feb 28, 2024
1 parent de78247 commit a1237c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/movies/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ const WholeMovieCardList = ({ data }: { data: DataList }) => {
className="rounded-box border-base-300 bg-base-100 border-[1px] p-6"
>
<h3 className="text-base-content my-10 text-2xl" id={dataList.key}>
<a className="link link-hover" href={`/movies/list/${dataList.key}`}>
<Link className="link link-hover" href={`/movies/list/${dataList.key}`}>
{" "}
{dataList.key}
</a>
</Link>
</h3>
<CategoryInfo data={data} category={dataList.key} subCategory="" />
{dataList.data.map(subData => (
Expand Down

0 comments on commit a1237c1

Please sign in to comment.