diff options
| author | real-zephex <[email protected]> | 2024-03-16 15:34:09 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-16 15:34:09 +0530 |
| commit | 638e61b55c1012e254fb690b697f678b6dab2c87 (patch) | |
| tree | 128bede2ddacb1ce7d13d9fdf0bcda98f2821443 | |
| parent | feature added: search anime by title (diff) | |
| download | dramalama-638e61b55c1012e254fb690b697f678b6dab2c87.tar.xz dramalama-638e61b55c1012e254fb690b697f678b6dab2c87.zip | |
vercel fix
| -rw-r--r-- | src/app/search/page.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/search/page.js b/src/app/search/page.js index cb571b3..c64030c 100644 --- a/src/app/search/page.js +++ b/src/app/search/page.js @@ -56,8 +56,8 @@ export default function Input() { <div className='animeEntry'> {search1 && search1.results.map((item, index) => ( - <Link href={`/info/${item.id}`} style={{textDecoration: "none"}}> - <div key={index} className='anime'> + <Link key={index} href={`/info/${item.id}`} style={{textDecoration: "none"}}> + <div className='anime'> <p>{item.title}</p> <Image src={item.image} |