From b2d72dbf10c856fba5f9c35eba9a734532c3602e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 17:00:16 +0000 Subject: [PATCH] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 7769647..282f462 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,7 +5,8 @@ import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCard import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; -import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import TestimonialRatingCardsOriginal from '@/components/sections/testimonial/TestimonialRatingCards'; +const TestimonialRatingCards = TestimonialRatingCardsOriginal as any; import { Award, Building2, Users } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";