From fd1f6c0e357719e2f3a6175a0ce01df652ee3cf2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 14:30:48 +0000 Subject: [PATCH] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 21c1906..e35da77 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,7 +5,16 @@ import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRev import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; import TeamOverlayCards from '@/components/sections/team/TeamOverlayCards'; -import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import TestimonialRatingCardsOriginal from '@/components/sections/testimonial/TestimonialRatingCards'; + +const TestimonialRatingCards = (props: any) => { + const { testimonials, ...rest } = props; + const cleanTestimonials = testimonials?.map((t: any) => { + const { id, ...restT } = t; + return restT; + }); + return ; +}; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() {