Skip to content

Commit 0bda28f

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent d98fc8c commit 0bda28f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/blogs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ export default function Blogs() {
229229
<div className="articles-grid">
230230
{filteredBlogs.length > 0 ? (
231231
filteredBlogs.map((blog, index) => (
232-
<BlogCard blog={blog} index={index} />
232+
<BlogCard key={blog.id ?? blog.slug} blog={blog} index={index} />
233233
))
234234
) : (
235235
<div className="no-results">

0 commit comments

Comments
 (0)