refactor: Remove quotes from testimonial text in home.html

This commit is contained in:
Paul Gauthier (aider) 2025-03-19 11:59:34 -07:00
parent 2facd2ab16
commit e7554c5413

View file

@ -865,7 +865,7 @@ aider --model gpt-4o --api-key openai=your-key-goes-here</pre>
// Update content when card is perpendicular to view (hidden)
setTimeout(() => {
testimonialElement.innerHTML = `
<p class="testimonial-text">"${newTestimonial.text}"</p>
<p class="testimonial-text">${newTestimonial.text}</p>
<p class="testimonial-author"><a href="${newTestimonial.link}" target="_blank">${newTestimonial.author}</a></p>
`;