feat: implement horizontal scroll for testimonials and display all reviews in dashboard

This commit is contained in:
pradeepkumar
2026-04-17 08:08:04 +05:30
parent 8cb5902200
commit 9985f533a9
2 changed files with 13 additions and 9 deletions

View File

@@ -137,9 +137,9 @@ export default function AgentDashboard() {
setPendingRequestCount(requestCounts.pending);
}
// Map testimonials for TestimonialsSection (latest 3)
// Map all testimonials for TestimonialsSection (horizontal scroll)
setTestimonials(
testimonialsData.slice(0, 3).map((t) => ({
testimonialsData.map((t) => ({
id: t.id,
text: t.text,
author: t.authorName,