From ae6f0c30994dceb77e3e65e482fdbc2ed580bb98 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 17:12:10 +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 8fc9c54..d009a22 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,7 +5,8 @@ import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCard import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; -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() {