From 3097a76b33b788e86c807deff378eed55458bf4b Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Mon, 2 Mar 2026 17:16:35 +0000 Subject: [PATCH] Fix error that occurs when displaying articles at the bottom of the page Replaced the non-existent `ArticleCard` component with the existing `BlogCard` component in the `home.tsx` file to resolve a runtime error. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 517dfa7b-26ac-463d-a6e1-a58c6df97188 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: cd70a2d4-954c-44af-a0a2-96cf1189c3f5 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/f209e72a-0939-48fa-84fc-57854de71967/517dfa7b-26ac-463d-a6e1-a58c6df97188/nFw7xof Replit-Helium-Checkpoint-Created: true --- client/src/pages/home.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index 5fe0471..e4d7065 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -543,7 +543,7 @@ export default function Home() { { type: "widget", el: }, ...bottomArticles.map((a) => ({ type: "article" as const, - el: , + el: , })), { type: "widget", el: }, { type: "ad", el:
},