aboutsummaryrefslogtreecommitdiff
path: root/src/app/recent
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/recent')
-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}"