From c9681f86e1e8840921c060c0645380ad0141a3cb Mon Sep 17 00:00:00 2001
From: Atul <72177710+anonatul@users.noreply.github.com>
Date: Mon, 13 Oct 2025 20:55:59 +0530
Subject: [PATCH] fix(app): Use unique ID for profile component key
I have updated the code to use the unique id assigned to each profile during data fetching.
---
src/Homepage.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Homepage.jsx b/src/Homepage.jsx
index 7c3651a8..82ec326e 100644
--- a/src/Homepage.jsx
+++ b/src/Homepage.jsx
@@ -170,7 +170,7 @@ function App() {
);
}
const paginatedData = getPaginatedData();
- return paginatedData.map((currentRecord, index) => );
+ return paginatedData.map((currentRecord) => );
};
return currentUrl === '/' ? (