From 0e593d1519151def9c4b00ceb2104dd70cb5c313 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 11:39:42 +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 1938a17..76dff3b 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -4,7 +4,8 @@ import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetail import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; -import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import TestimonialRatingCardsOriginal from '@/components/sections/testimonial/TestimonialRatingCards'; +const TestimonialRatingCards = TestimonialRatingCardsOriginal as any; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() {