diff --git a/src/components/views/AllCatalog.jsx b/src/components/views/AllCatalog.jsx index b9e072b4..6d6180c0 100755 --- a/src/components/views/AllCatalog.jsx +++ b/src/components/views/AllCatalog.jsx @@ -700,8 +700,9 @@ const CatalogPost = ({ post }) => { const CatalogRow = ({ row }) => { const posts = []; - for (const post of row) { - posts.push(); + for (const [index, post] of row.entries()) { + const key = `${post?.cid}-${index}`; + posts.push(); } return
{posts}
; }; diff --git a/src/components/views/Catalog.jsx b/src/components/views/Catalog.jsx index 6d3e24a9..13904c5d 100755 --- a/src/components/views/Catalog.jsx +++ b/src/components/views/Catalog.jsx @@ -1122,8 +1122,9 @@ const CatalogPost = ({ post }) => { const CatalogRow = ({ row }) => { const posts = []; - for (const post of row) { - posts.push(); + for (const [index, post] of row.entries()) { + const key = `${post?.cid}-${index}`; + posts.push(); } return
{posts}
; }; diff --git a/src/components/views/SubscriptionsCatalog.jsx b/src/components/views/SubscriptionsCatalog.jsx index 71b29bad..53d531c1 100755 --- a/src/components/views/SubscriptionsCatalog.jsx +++ b/src/components/views/SubscriptionsCatalog.jsx @@ -700,8 +700,9 @@ const CatalogPost = ({ post }) => { const CatalogRow = ({ row }) => { const posts = []; - for (const post of row) { - posts.push(); + for (const [index, post] of row.entries()) { + const key = `${post?.cid}-${index}`; + posts.push(); } return
{posts}
; };