aboutsummaryrefslogtreecommitdiff
path: root/src/app/recent/page.js
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-15 21:28:13 +0530
committerreal-zephex <[email protected]>2024-03-15 21:28:13 +0530
commit12b334d4c3889ed07cafe1f9b84ea5dba2442e2a (patch)
tree7472616ae431f52bf9309cb066db82ff92b38471 /src/app/recent/page.js
parentfeatures: added anime and pretty much completed it. only search functionality... (diff)
downloaddramalama-12b334d4c3889ed07cafe1f9b84ea5dba2442e2a.tar.xz
dramalama-12b334d4c3889ed07cafe1f9b84ea5dba2442e2a.zip
minor fixes for vercel
Diffstat (limited to 'src/app/recent/page.js')
-rw-r--r--src/app/recent/page.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/recent/page.js b/src/app/recent/page.js
index f879e58..6f4e3cd 100644
--- a/src/app/recent/page.js
+++ b/src/app/recent/page.js
@@ -14,8 +14,8 @@ export default async function Releases() {
<div className="trending">
{data && data.results.map((item, index) => (
- <Link href={`/info/${item.id}`} style={{textDecoration: "none"}}>
- <div key={index} className="trendingEntries">
+ <Link key={index} href={`/info/${item.id}`} style={{textDecoration: "none"}}>
+ <div className="trendingEntries">
<Image
src={item.image}
className="{trendingImage}"