From a6b6f89dc7354463273e1b9aa8e69f1d28879555 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Sat, 7 Sep 2024 09:28:53 +0200 Subject: [PATCH] fix: fix error related to testimonial.rating property --- components/shared/Testimonials.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/shared/Testimonials.tsx b/components/shared/Testimonials.tsx index 579d4d9..3e86d1c 100644 --- a/components/shared/Testimonials.tsx +++ b/components/shared/Testimonials.tsx @@ -37,7 +37,7 @@ const Testimonials = () => { name={testimonial.name} role={testimonial.role} testimonial={testimonial.testimonial} - rating={testimonial.rating} + rating={0} /*{testimonial.rating}*/ key={idx} /> ))}