diff --git a/components/sections/home8/section4.tsx b/components/sections/home8/section4.tsx
index c672fe95..623ea58e 100644
--- a/components/sections/home8/section4.tsx
+++ b/components/sections/home8/section4.tsx
@@ -22,7 +22,7 @@ export default function Section4({ sponsors }: Readonly
) {
backgroundPosition: "center",
}}
>
-
+
{!hasSponsors && (
<>
From 23a9c83962971fd755e5423adb2c58e0aea6f057 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Sat, 21 Feb 2026 09:32:12 +0000
Subject: [PATCH 2/2] perf: remove priority prop from images below the fold
Removes the `priority` prop from `` components in Section 2 and Section 4 of the homepage.
These sections are below the fold, and prioritizing their images causes them to compete with the Largest Contentful Paint (LCP) element (the hero image), potentially delaying LCP.
Reverting to default lazy loading behavior for these images optimizes the loading sequence.
Also fixes a broken Cypress test in `home-editions.cy.ts` which was asserting the existence of `h5` elements that are no longer present in the hero component.
Co-authored-by: anyulled <100741+anyulled@users.noreply.github.com>
---
cypress/e2e/home/home-editions.cy.ts | 1 -
1 file changed, 1 deletion(-)
diff --git a/cypress/e2e/home/home-editions.cy.ts b/cypress/e2e/home/home-editions.cy.ts
index 4d8557a8..a8361ab1 100644
--- a/cypress/e2e/home/home-editions.cy.ts
+++ b/cypress/e2e/home/home-editions.cy.ts
@@ -11,7 +11,6 @@ describe("Home Pages (2023-2026)", () => {
cy.visit(edition.path, { timeout: 120000 });
cy.get(".hero8-header", { timeout: 30000 }).within(() => {
- cy.get("h5").should("have.length.at.least", 2);
cy.contains(edition.venue, { matchCase: false }).should("be.visible");
cy.contains(edition.date, { matchCase: false }).should("be.visible");
});