Merge pull request #35 from MODSetter/dev

Fix(ui): key prop warning in dashboard page by adding a key to the Li…
This commit is contained in:
Rohan Verma 2025-04-11 19:37:02 -07:00 committed by GitHub
commit fa5dbb786f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -211,7 +211,7 @@ const DashboardPage = () => {
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{searchSpaces && searchSpaces.map((space) => (
<Link href={`/dashboard/${space.id}/documents`}>
<Link href={`/dashboard/${space.id}/documents`} key={space.id}>
<motion.div
key={space.id}
variants={itemVariants}