diff --git a/src/app/(agent)/agent/dashboard/page.tsx b/src/app/(agent)/agent/dashboard/page.tsx index 9a8e3aa..00c0684 100644 --- a/src/app/(agent)/agent/dashboard/page.tsx +++ b/src/app/(agent)/agent/dashboard/page.tsx @@ -481,9 +481,6 @@ export default function AgentDashboard() { } content={
- {availabilityData.type && ( -

{availabilityData.type}

- )}
{availabilityData.schedule.length > 0 ? ( availabilityData.schedule.map((item, index) => ( diff --git a/src/app/(user)/user/profile/[id]/page.tsx b/src/app/(user)/user/profile/[id]/page.tsx index b76ee55..ce1866d 100644 --- a/src/app/(user)/user/profile/[id]/page.tsx +++ b/src/app/(user)/user/profile/[id]/page.tsx @@ -409,9 +409,6 @@ export default function AgentProfileView() { } content={
- {availabilityData.type && ( -

{availabilityData.type}

- )}
{availabilityData.schedule.length > 0 ? ( availabilityData.schedule.map((item, index) => ( diff --git a/src/components/profile/TestimonialCard.tsx b/src/components/profile/TestimonialCard.tsx index 5088444..b967c5c 100644 --- a/src/components/profile/TestimonialCard.tsx +++ b/src/components/profile/TestimonialCard.tsx @@ -12,7 +12,7 @@ interface TestimonialCardProps { export function TestimonialCard({ text, author, role, rating }: TestimonialCardProps) { return ( -
+

I have been working with Lorem .

-

{text}

-
+

{text}

+

{author}

{role}

diff --git a/src/components/profile/TestimonialsSection.tsx b/src/components/profile/TestimonialsSection.tsx index 8e1a2e3..bf12a4e 100644 --- a/src/components/profile/TestimonialsSection.tsx +++ b/src/components/profile/TestimonialsSection.tsx @@ -30,7 +30,7 @@ export function TestimonialsSection({ testimonials }: TestimonialsSectionProps)

Clients rate our real estate services {averageRating} out of 5 on average, based on {testimonials.length} recent client review{testimonials.length !== 1 ? 's' : ''}.

-
+
{testimonials.map((testimonial) => (