From e7554c54138f1f326fb5ae3cc6273649b6be7d93 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 19 Mar 2025 11:59:34 -0700 Subject: [PATCH] refactor: Remove quotes from testimonial text in home.html --- aider/website/home.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/website/home.html b/aider/website/home.html index 42b5f588e..ef8eddef1 100644 --- a/aider/website/home.html +++ b/aider/website/home.html @@ -865,7 +865,7 @@ aider --model gpt-4o --api-key openai=your-key-goes-here // Update content when card is perpendicular to view (hidden) setTimeout(() => { testimonialElement.innerHTML = ` -

"${newTestimonial.text}"

+

${newTestimonial.text}

${newTestimonial.author}

`;